Boost logo

Boost-Build :

From: Samuel Krempp (krempp_at_[hidden])
Date: 2004-01-22 22:25:55


this printf was not following the usual <file>:<line number> convention,
thus tools like emacs dont detect it to jump to the correct file/position.

-- 
Samuel --nextPart19203471.eUsoQoxHSc Content-Type: text/x-diff; name="line_print.patch"
Content-Transfer-Encoding: 8Bit
Content-Disposition: attachment; filename="line_print.patch"
--- scan.c	2004-01-23 03:18:11.000000000 +0000
+++ scan.c.sam	2004-01-23 03:17:05.000000000 +0000
@@ -65,7 +65,7 @@
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 ) );
 --nextPart19203471.eUsoQoxHSc-- 

Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk