From: Paul Eggert Date: Sat, 4 Jan 2003 00:31:28 +0000 (+0000) Subject: ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not X-Git-Tag: BISON-2_0~446 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/0fff129c7c25f91aaef8107d064484c50fabca3e ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not grow to a huge size with typical invocation. --- diff --git a/src/scan-skel.l b/src/scan-skel.l index af5226c9..6c7ff626 100644 --- a/src/scan-skel.l +++ b/src/scan-skel.l @@ -76,7 +76,7 @@ int skel_lex (void); "@" abort (); \n lineno++; ECHO; -[^@\n]+ ECHO; +[^@\n] ECHO; <> xfclose (yyout); free (outname); return EOF; %%