Commit 50b4785

Matthias-Christian Ott <ott@enolink.de>
2008-06-04 13:52:59
terminate error message with newline
1 parent c61b34e
Changed files (1)
std.c
@@ -166,7 +166,7 @@ parseesc(void) {
 				s |= QuestionMark; 
 			else if(c == ';') {
 				if(!(s & Digit))
-					eprint("syntax error");
+					eprint("syntax error\n");
 				s &= ~Digit;
 				j++;
 			}