pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c61b34e
)
terminate error message with newline
author
Matthias-Christian Ott
<ott@enolink.de>
Wed, 4 Jun 2008 17:52:59 +0000
(19:52 +0200)
committer
Matthias-Christian Ott
<ott@enolink.de>
Wed, 4 Jun 2008 17:52:59 +0000
(19:52 +0200)
std.c
patch
|
blob
|
history
diff --git
a/std.c
b/std.c
index
78e9237
..
4afdc3c
100644
(file)
--- 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++;
}