]> git.saurik.com Git - bison.git/commitdiff
([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 4 Jan 2003 00:31:28 +0000 (00:31 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 4 Jan 2003 00:31:28 +0000 (00:31 +0000)
grow to a huge size with typical invocation.

src/scan-skel.l

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