Ignore CRs
This commit is contained in:
parent
ec7ef03381
commit
39ddb54e58
2 changed files with 5 additions and 0 deletions
|
@ -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>
|
2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove obsolete code.
|
* acinclude.m4: Remove obsolete code.
|
||||||
|
|
|
@ -83,6 +83,7 @@ int linenumber;
|
||||||
";".* { }
|
";".* { }
|
||||||
" " { }
|
" " { }
|
||||||
"\t" { }
|
"\t" { }
|
||||||
|
"\r" { }
|
||||||
"\n" { linenumber ++ ;}
|
"\n" { linenumber ++ ;}
|
||||||
"=" { return '=';}
|
"=" { return '=';}
|
||||||
"." { return '.';}
|
"." { return '.';}
|
||||||
|
|
Loading…
Reference in a new issue