st.c | 7 +------ diff --git a/st.c b/st.c index 04ff1b94038ad4cb846132adaa9cb99482bbfac9..bef3039a8ad1c7d8b67e326ee3b071dd42f19f1f 100644 --- a/st.c +++ b/st.c @@ -861,12 +861,7 @@ 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