diff --git a/ChangeLog b/ChangeLog index 2b0933f6..cb430956 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,10 @@ CVS code edit_refresh() - Added check for current line "running" off the screen. Hopefully this will not cause any recursive lockups. +- move.c: + page_down() + - do an edit_update() at last case if we're not at the first + screen... nano-0.9.14 - 07/27/2000 - nano.h: diff --git a/move.c b/move.c index 1f15e081..bff4a897 100644 --- a/move.c +++ b/move.c @@ -62,7 +62,9 @@ int page_down(void) while (current != filebot) { current = current->next; current_y++; - edit_update(current); + + if (edittop != fileage) + edit_update(current); } update_cursor(); diff --git a/po/nano.pot b/po/nano.pot index 3d7eef04..051b75c6 100644 --- a/po/nano.pot +++ b/po/nano.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-28 08:30-0400\n" +"POT-Creation-Date: 2000-07-28 10:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n"