diff --git a/ChangeLog b/ChangeLog index 5e25e188..d2d1e4e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ CVS code - page_down() - Check for totlines < editwinrows in check for superflous edit update (fixed BUG #57). + - Oops, check for <= editwinrows (Ryan Krebs). - search.c: print_replaced() - s/occurence/occurrence typos (Jordi). diff --git a/move.c b/move.c index bda2c3c8..e81a4523 100644 --- a/move.c +++ b/move.c @@ -57,7 +57,7 @@ int page_down(void) /* AHEM, if we only have a screen or less of text, DONT do an edit_update, just move the cursor to editbot! */ - if (edittop == fileage && editbot == filebot && totlines < editwinrows) { + if (edittop == fileage && editbot == filebot && totlines <= editwinrows) { current = editbot; reset_cursor(); } else if (editbot != filebot || edittop == fileage) {