From: Aurélien Aptel Date: Thu, 26 Aug 2010 19:32:34 +0000 (+0200) Subject: fix \b and clean \t. X-Git-Tag: 0.1~93 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=c81ea2900195a72a2e1a86d2cf3e7ebb6f941e2f;p=st.git fix \b and clean \t. --- diff --git a/st.c b/st.c index 6e34f1e..2e0ef70 100644 --- a/st.c +++ b/st.c @@ -443,11 +443,6 @@ tmovecursor(int dir) { break; case CURSOR_LEFT: xf--; - if(term.mode & MODE_WRAP && xf < 0) { - xf = term.col-1, yf--; - if(yf < term.top) - yf = term.top, xf = 0; - } break; case CURSOR_RIGHT: xf++;