Ignore CRs
authorNick Clifton <nickc@redhat.com>
Tue, 17 May 2005 16:08:54 +0000 (16:08 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 17 May 2005 16:08:54 +0000 (16:08 +0000)
binutils/ChangeLog
binutils/deflex.l

index 6dba2a2d3a6acf33b7e81a38f778cb2132040c08..8ce3d5125d6e21c24d81b056f8808d4081ad8a93 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-15  Yitzchak Scott-Thoennes  <sthoenna@efn.org>
+
+        * deflex.l: Ignore CRs
+
 2005-05-15  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * acinclude.m4: Remove obsolete code.
index 68bd1f9309bcd81e73aef9e1704f887a0ae9a114..c6d45c85a4311cfa5c2bf0ffa1ff8fa14e7af20f 100644 (file)
@@ -83,6 +83,7 @@ int linenumber;
 ";".*          { }
 " "            { }
 "\t"           { }
+"\r"           { }
 "\n"           { linenumber ++ ;}
 "="            { return '=';}
 "."            { return '.';}