aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2010-08-26 21:32:34 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2010-08-26 21:32:34 +0200
commitc81ea2900195a72a2e1a86d2cf3e7ebb6f941e2f (patch)
treee97aed1529b6d600d72c6506cad001fe8cf2527b
parentd1084bfdab23d3a5560bab3e1f1b97f353115078 (diff)
downloadst-c81ea2900195a72a2e1a86d2cf3e7ebb6f941e2f.tar.gz
st-c81ea2900195a72a2e1a86d2cf3e7ebb6f941e2f.tar.bz2
fix \b and clean \t.
-rw-r--r--st.c5
1 files changed, 0 insertions, 5 deletions
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++;