From: Matthias-Christian Ott Date: Wed, 4 Jun 2008 17:52:59 +0000 (+0200) Subject: terminate error message with newline X-Git-Tag: 0.1~171 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=538a0c443141626c5a4b7230bb49b67e7d1a5d42;p=st.git terminate error message with newline --- 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++; }