terminology: revert 77549,77551 about fixing a vim issue.

Will investigate further.

SVN revision: 77616
This commit is contained in:
Boris Faure 2012-10-09 07:47:24 +00:00
parent c220c88c39
commit 41c7edd9d9
1 changed files with 1 additions and 1 deletions

View File

@ -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;