aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
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) {
443 break; 443 break;
444 case CURSOR_LEFT: 444 case CURSOR_LEFT:
445 xf--; 445 xf--;
446 if(term.mode & MODE_WRAP && xf < 0) {
447 xf = term.col-1, yf--;
448 if(yf < term.top)
449 yf = term.top, xf = 0;
450 }
451 break; 446 break;
452 case CURSOR_RIGHT: 447 case CURSOR_RIGHT:
453 xf++; 448 xf++;