aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
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
commitb09401b96b640a796d11774664c49031cee3245a (patch)
treee97aed1529b6d600d72c6506cad001fe8cf2527b /st.c
parenta7922bd1d94ace6d14e40a27820e217cd6c4e632 (diff)
downloadst-b09401b96b640a796d11774664c49031cee3245a.tar.zst
fix \b and clean \t.
Diffstat (limited to 'st.c')
-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++;