summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-08-28 09:19:50 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-08-28 09:19:50 +0000
commitfc63750d300f5f7837312d8da04cde05bd22b3f4 (patch)
treeacc12c9911dcbfa375939239ee57e6b22a3f69c9 /input.c
parent38b752c1d8338b78c86eb863c028cc058708828f (diff)
Scrolling region.
Diffstat (limited to 'input.c')
-rw-r--r--input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input.c b/input.c
index 03805fc8..8441bae1 100644
--- a/input.c
+++ b/input.c
@@ -1,4 +1,4 @@
-/* $Id: input.c,v 1.3 2007-08-27 11:05:21 nicm Exp $ */
+/* $Id: input.c,v 1.4 2007-08-28 09:19:50 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -449,7 +449,7 @@ input_pair_control(u_char **buf, size_t *len,
(*len) -= size + 1;
break;
case 'M': /* RI */
- input_store_one(b, CODE_CURSORUPSCROLL, 1);
+ input_store_zero(b, CODE_REVERSEINDEX);
break;
default:
log_debug("unknown control2: %c (%hhu)", ch, ch);