From 50b4785f2650a741f827f4be17ecc18844a1b175 Mon Sep 17 00:00:00 2001
From: Matthias-Christian Ott <ott@enolink.de>
Date: Wed, 4 Jun 2008 19:52:59 +0200
Subject: [PATCH] terminate error message with newline

---
 std.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/std.c b/std.c
index 78e9237..4afdc3c 100644
--- a/std.c
+++ b/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++;
 			}