diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-08-28 09:19:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-08-28 09:19:50 +0000 |
commit | fc63750d300f5f7837312d8da04cde05bd22b3f4 (patch) | |
tree | acc12c9911dcbfa375939239ee57e6b22a3f69c9 /input.c | |
parent | 38b752c1d8338b78c86eb863c028cc058708828f (diff) | |
download | rtmux-fc63750d300f5f7837312d8da04cde05bd22b3f4.tar.gz rtmux-fc63750d300f5f7837312d8da04cde05bd22b3f4.tar.bz2 rtmux-fc63750d300f5f7837312d8da04cde05bd22b3f4.zip |
Scrolling region.
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |