From: Matthias-Christian Ott Date: Wed, 4 Jun 2008 17:52:59 +0000 (+0200) Subject: terminate error message with newline X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=50b4785f2650a741f827f4be17ecc18844a1b175;hp=c61b34e8e1883faba38f94b0c6775a47b1267e6f;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++; }