Browse Source

fix \b and clean \t.

master
Aurélien Aptel 14 years ago
parent
commit
b09401b96b
1 changed files with 0 additions and 5 deletions
  1. +0
    -5
      st.c

+ 0
- 5
st.c View File

@ -443,11 +443,6 @@ tmovecursor(int dir) {
break; break;
case CURSOR_LEFT: case CURSOR_LEFT:
xf--; xf--;
if(term.mode & MODE_WRAP && xf < 0) {
xf = term.col-1, yf--;
if(yf < term.top)
yf = term.top, xf = 0;
}
break; break;
case CURSOR_RIGHT: case CURSOR_RIGHT:
xf++; xf++;


Loading…
Cancel
Save