From: Will Estes Date: Tue, 31 Jul 2001 21:31:46 +0000 (+0000) Subject: error messages will now show up the way that emacs likes them X-Git-Tag: flex-2-5-10~256 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5bfb0bce064f98e08f6635fdf99a3b9bd1b949f1;p=flex error messages will now show up the way that emacs likes them --- diff --git a/parse.y b/parse.y index fce4679..3a55691 100644 --- a/parse.y +++ b/parse.y @@ -901,7 +901,7 @@ void line_pinpoint( str, line ) char str[]; int line; { - fprintf( stderr, "\"%s\", line %d: %s\n", infilename, line, str ); + fprintf( stderr, "%s: %d: %s\n", infilename, line, str ); }