From 0fff129c7c25f91aaef8107d064484c50fabca3e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 4 Jan 2003 00:31:28 +0000 Subject: [PATCH] ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not grow to a huge size with typical invocation. --- src/scan-skel.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; %% -- 2.50.0