aboutsummaryrefslogtreecommitdiff
path: root/binutils
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
commit39ddb54e58f750cfbdff29c1795483a0c505c8ad (patch)
treeaee8257e6a0ee17724b84c2744915ca4af11fb43 /binutils
parentec7ef0338174cf3b27c2dc8279cc672ca976d487 (diff)
downloadgdb-39ddb54e58f750cfbdff29c1795483a0c505c8ad.zip
gdb-39ddb54e58f750cfbdff29c1795483a0c505c8ad.tar.gz
gdb-39ddb54e58f750cfbdff29c1795483a0c505c8ad.tar.bz2
Ignore CRs
Diffstat (limited to 'binutils')
-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 6dba2a2..8ce3d51 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 68bd1f9..c6d45c8 100644
--- a/binutils/deflex.l
+++ b/binutils/deflex.l
@@ -83,6 +83,7 @@ int linenumber;
";".* { }
" " { }
"\t" { }
+"\r" { }
"\n" { linenumber ++ ;}
"=" { return '=';}
"." { return '.';}