all repos — st @ 50b4785f2650a741f827f4be17ecc18844a1b175

st (suckless terminal) config

terminate error message with newline
Matthias-Christian Ott ott@enolink.de
commit

50b4785f2650a741f827f4be17ecc18844a1b175

parent

c61b34e8e1883faba38f94b0c6775a47b1267e6f

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M std.cstd.c

@@ -166,7 +166,7 @@ else if(c == '?')

s |= QuestionMark; else if(c == ';') { if(!(s & Digit)) - eprint("syntax error"); + eprint("syntax error\n"); s &= ~Digit; j++; }