diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-26 21:34:37 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-26 21:34:37 +0200 |
commit | ab5e72dc3940e640c635a149dda035137d0e966f (patch) | |
tree | d4f74abef15a7d24a599d1f2a6179d5d6152def7 | |
parent | f181bb29d898642470cb2026264debcac1449e95 (diff) | |
download | st-ab5e72dc3940e640c635a149dda035137d0e966f.tar.gz st-ab5e72dc3940e640c635a149dda035137d0e966f.tar.bz2 |
clean \t.
-rw-r--r-- | st.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -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 |