2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Fix file:line printing so that Emacs and other tools are not confused.

Patch from Samuel Krempp.


[SVN r21887]
This commit is contained in:
Vladimir Prus
2004-01-23 14:16:29 +00:00
parent 9c45a944b7
commit f167f706e0
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ void
yyerror( char *s )
{
if( incp )
printf( "%s: line %d: ", incp->fname, incp->line );
printf( "%s:%d: ", incp->fname, incp->line );
printf( "%s at %s\n", s, symdump( &yylval ) );

View File

@@ -65,7 +65,7 @@ void
yyerror( char *s )
{
if( incp )
printf( "%s: line %d: ", incp->fname, incp->line );
printf( "%s:%d: ", incp->fname, incp->line );
printf( "%s at %s\n", s, symdump( &yylval ) );