Commit 9e00484

Aurélien Aptel <aurelien.aptel@gmail.com>
2010-10-14 13:21:12
fixed newline bug.
1 parent 68d8fcf
Changed files (1)
st.c
@@ -627,12 +627,13 @@ tscrollup(int orig, int n) {
 
 void
 tnewline(void) {
+	int x = term.c.x+1 < term.col ? term.c.x : 0;
 	int y = term.c.y;
 	if(term.c.y == term.bot)
 		tscrollup(term.top, 1);
 	else
 		y++;
-	tmoveto(0, y);
+	tmoveto(x, y);
 }
 
 void