* ldlex.l (WILDCHAR): Add the caret and exclamation point
characters, so that they can be used inside regexps.
This commit is contained in:
parent
83b9503b40
commit
107c6e11a7
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-08-31 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* ldlex.l (WILDCHAR): Add the caret and exclamation point
|
||||
characters, so that they can be used inside regexps.
|
||||
|
||||
2010-08-31 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* ld.texinfo (MEMORY): Clarify the behaviour of the ! character in
|
||||
|
|
|
@ -99,7 +99,7 @@ CMDFILENAMECHAR1 [_a-zA-Z0-9\/\.\\_\+\$\:\[\]\\\,\=\&\!\<\>\~]
|
|||
FILENAMECHAR1 [_a-zA-Z\/\.\\\$\_\~]
|
||||
SYMBOLCHARN [_a-zA-Z\/\.\\\$\_\~0-9]
|
||||
FILENAMECHAR [_a-zA-Z0-9\/\.\-\_\+\=\$\:\[\]\\\,\~]
|
||||
WILDCHAR [_a-zA-Z0-9\/\.\-\_\+\=\$\:\[\]\\\,\~\?\*]
|
||||
WILDCHAR [_a-zA-Z0-9\/\.\-\_\+\=\$\:\[\]\\\,\~\?\*\^\!]
|
||||
WHITE [ \t\n\r]+
|
||||
|
||||
NOCFILENAMECHAR [_a-zA-Z0-9\/\.\-\_\+\$\:\[\]\\\~]
|
||||
|
|
Loading…
Reference in a new issue