summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-05-17 16:08:54 +0000
committerNick Clifton <nickc@redhat.com>2005-05-17 16:08:54 +0000
commit0ae5b558b051eaa80cddfec97e528643d4e2f4ec (patch)
tree52394cf396080fe671ab1c358d7932622e6dae13
parenta3adaf10ac2cb19e34e1b28794670c6f1d547c08 (diff)
downloadbinutils-redhat-0ae5b558b051eaa80cddfec97e528643d4e2f4ec.tar.gz
Ignore CRs
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/deflex.l1
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 6dba2a2d3a..8ce3d5125d 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -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.
diff --git a/binutils/deflex.l b/binutils/deflex.l
index 68bd1f9309..c6d45c85a4 100644
--- a/binutils/deflex.l
+++ b/binutils/deflex.l
@@ -83,6 +83,7 @@ int linenumber;
";".* { }
" " { }
"\t" { }
+"\r" { }
"\n" { linenumber ++ ;}
"=" { return '=';}
"." { return '.';}