From d636c143aec0a73977ce09d85b7da44b75c94417 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 21 Apr 2014 23:02:51 -0400 Subject: comment --- src/parser.c | 1 + src/parser.l | 1 + 2 files changed, 2 insertions(+) diff --git a/src/parser.c b/src/parser.c index 8d8154a..b338688 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2590,6 +2590,7 @@ static void runes_parser_handle_il(RunesTerm *t, char *buf, size_t len) int params[RUNES_PARSER_CSI_MAX_PARAMS] = { 1 }, nparams; runes_parser_extract_csi_params(buf + 2, len - 3, params, &nparams); + /* XXX this is wrong - it only works if the cursor is on the top line */ runes_display_scroll_up(t, params[0]); } diff --git a/src/parser.l b/src/parser.l index df5b9de..dbafb9d 100644 --- a/src/parser.l +++ b/src/parser.l @@ -461,6 +461,7 @@ static void runes_parser_handle_il(RunesTerm *t, char *buf, size_t len) int params[RUNES_PARSER_CSI_MAX_PARAMS] = { 1 }, nparams; runes_parser_extract_csi_params(buf + 2, len - 3, params, &nparams); + /* XXX this is wrong - it only works if the cursor is on the top line */ runes_display_scroll_up(t, params[0]); } -- cgit v1.2.3-54-g00ecf