]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* ldlex.l (WILDCHAR): Add the caret and exclamation point
authorNick Clifton <nickc@redhat.com>
Tue, 31 Aug 2010 16:08:24 +0000 (16:08 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 31 Aug 2010 16:08:24 +0000 (16:08 +0000)
        characters, so that they can be used inside regexps.

ld/ChangeLog
ld/ldlex.l

index be5ee3e042389dcd956fb6c34a7bf4298a478e40..9cf54fdaf32ab59e7560dc27d063ebc4c3744227 100644 (file)
@@ -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
index e52d83b222387f7f97913c0433a06f7aeed3da2c..7f038b32a4aec27cd0965adc56b115885727f254 100644 (file)
@@ -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\/\.\-\_\+\$\:\[\]\\\~]