From: Paul Eggert Date: Thu, 26 Dec 2002 05:59:06 +0000 (+0000) Subject: ("@output ".*\n): Close any old yyout before opening a new one. X-Git-Tag: BISON-1_875~37 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/88015bf06b342b34b0b4de833af3ba40acfd2f74 ("@output ".*\n): Close any old yyout before opening a new one. This fixes Debian bug 156349, reported by Bruce Stephens. --- diff --git a/src/scan-skel.l b/src/scan-skel.l index 80849d37..fd9bd4c6 100644 --- a/src/scan-skel.l +++ b/src/scan-skel.l @@ -60,6 +60,7 @@ int skel_lex (void); XFREE (outname); outname = xstrdup (filename); + xfclose (yyout); yyout = xfopen (outname, "w"); lineno = 1; }