From dbfcf7a89f749a979031931202b432243ea712bd Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Mon, 30 Jul 2012 14:54:27 +0200 Subject: scanner: restore a missing start condition $ flex src/scan-skel.l src/scan-skel.l:145: multiple <> rules for start condition SC_AT_DIRECTIVE_ARGS src/scan-skel.l:145: multiple <> rules for start condition SC_AT_DIRECTIVE_SKIP_WS This is warning, and it seems there are no means to make it an error. * src/scan-skel.l: Restore the start-condition INITIAL for an <> clause. --- src/scan-skel.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/scan-skel.l') diff --git a/src/scan-skel.l b/src/scan-skel.l index 862b34fd..ed61b5c8 100644 --- a/src/scan-skel.l +++ b/src/scan-skel.l @@ -91,7 +91,7 @@ static void fail_for_invalid_at (char const *at); \n out_lineno++; ECHO; [^@\n]+ ECHO; -<> { +<> { if (outname) { free (outname); -- cgit v1.2.1