Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision 26238c181d3602cb7a91e2509316bdb5f5fa32eb)
+++ src/Parser/parser.yy	(revision fc1ef6262344eb2eb531046aed824827d0a0909f)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Aug 26 17:50:19 2017
-// Update Count     : 2712
+// Last Modified On : Mon Aug 28 13:24:10 2017
+// Update Count     : 2720
 //
 
@@ -3136,9 +3136,8 @@
 
 void yyerror( const char * ) {
-	cout << "Error ";
 	if ( yyfilename ) {
-		cout << "in file " << yyfilename << " ";
+		cout << yyfilename << ":";
 	} // if
-	cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << endl;
+	cout << yylineno << ":1 syntax error at token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << endl;
 }
 
