summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bin/shotty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/shotty.c b/bin/shotty.c
index 6003146c..9c523677 100644
--- a/bin/shotty.c
+++ b/bin/shotty.c
@@ -68,7 +68,7 @@ static void clear(struct Cell *a, struct Cell *b) {
 static char updateNUL(wchar_t ch) {
 	switch (ch) {
 		case BS: if (x) x--; return NUL;
-		case NL: y = MIN(y + 1, rows - 1); x = 0; return NUL;
+		case NL: y = MIN(y + 1, rows - 1); return NUL;
 		case CR: x = 0; return NUL;
 		case ESC: return ESC;
 	}
2020-02-11Set self.nick to * initiallyJune McEnroe 2020-02-11Define ColorCap instead of hardcoding 100June McEnroe 2020-02-11Move hash to top of chat.hJune McEnroe 2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe 2020-02-11Cast towupper to wchar_tJune McEnroe 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe