aboutsummarylogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel2010-08-26 21:32:34 +0200
committerAurélien Aptel2010-08-26 21:32:34 +0200
commitb89e8d1d3319c9c16e9e3245e0844b7de01e5d04 (patch)
tree81d56dab25daf9df7cfe30a0c8e00cd20f4116f1 /st.c
parente82adf41ef964afe2568b5b9360df333f2092c42 (diff)
downloadaur-b89e8d1d3319c9c16e9e3245e0844b7de01e5d04.tar.gz
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 6e34f1ef01d0..2e0ef70bfd90 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++;