Commit 5c93f39

Aurélien Aptel <aurelien.aptel@gmail.com>
2010-08-26 15:34:37
clean \t.
1 parent 4422648
Changed files (1)
st.c
@@ -861,12 +861,7 @@ csireset(void) {
 void
 tputtab(void) {
 	int space = TAB - term.c.x % TAB;
-	
-	if(term.c.x + space >= term.col)
-		space--;
-	
-	for(; space > 0; space--)
-		tmovecursor(CURSOR_RIGHT);
+	tmoveto(term.c.x + space, term.c.y);
 }
 
 void