* src/scan-skel.l: Scan more than one inert character per yylex

invocation.
This commit is contained in:
Akim Demaille
2003-02-02 10:55:20 +00:00
parent 7aff61d4dc
commit 68e93ad549
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2003-02-02 Akim Demaille <akim@epita.fr>
* src/scan-skel.l: Scan more than one inert character per yylex
invocation.
2003-02-01 Paul Eggert <eggert@twinsun.com>
Version 1.875a.

View File

@@ -76,7 +76,7 @@ int skel_lex (void);
"@" abort ();
\n lineno++; ECHO;
[^@\n] ECHO;
[^@\n]+ ECHO;
<<EOF>> xfclose (yyout); free (outname); return EOF;
%%