From: Nick Clifton Date: Tue, 17 May 2005 16:08:54 +0000 (+0000) Subject: Ignore CRs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=39ddb54e58f750cfbdff29c1795483a0c505c8ad;p=binutils-gdb.git Ignore CRs --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 6dba2a2d3a6..8ce3d5125d6 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2005-05-15 Yitzchak Scott-Thoennes + + * deflex.l: Ignore CRs + 2005-05-15 Daniel Jacobowitz * acinclude.m4: Remove obsolete code. diff --git a/binutils/deflex.l b/binutils/deflex.l index 68bd1f9309b..c6d45c85a43 100644 --- a/binutils/deflex.l +++ b/binutils/deflex.l @@ -83,6 +83,7 @@ int linenumber; ";".* { } " " { } "\t" { } +"\r" { } "\n" { linenumber ++ ;} "=" { return '=';} "." { return '.';}