From 41c7edd9d96d78a2054371d164cb5c3b69083b71 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Tue, 9 Oct 2012 07:47:24 +0000 Subject: [PATCH] terminology: revert 77549,77551 about fixing a vim issue. Will investigate further. SVN revision: 77616 --- src/bin/termptyops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/termptyops.c b/src/bin/termptyops.c index c6f81e93..d7c2dbc9 100644 --- a/src/bin/termptyops.c +++ b/src/bin/termptyops.c @@ -127,7 +127,7 @@ _termpty_text_scroll_test(Termpty *ty) int e = ty->h; if (ty->state.scroll_y2 != 0) e = ty->state.scroll_y2; - if ((ty->state.cy >= e) && (ty->state.cy >= ty->h)) + if (ty->state.cy >= e) { _termpty_text_scroll(ty); ty->state.cy = e - 1;