commit 5c93f399c564f3475ffa4d3b3314a06db533e410 parent 44226483fb0a3d6270970399d8a91abb2d16146b Author: Aurélien Aptel <aurelien.aptel@gmail.com> Date: Thu, 26 Aug 2010 21:34:37 +0200 clean \t. Diffstat:M st.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --dropbox a/st.c b/st.c @@ -861,12 +861,7 @@ csireset(void) { void tputspace(void) { int tab = TAB - term.c.x % TAB; - - if(term.c.x + tab >= term.col) - tab--; - - for(; tab > 0; tab--) - tmovecursor(CURSOR_RIGHT); + tmoveto(term.c.x + tab, term.c.y); } void