([^@\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 af5226c..6c7ff62 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;
 %%