move.c: page_down() - Oops, check for <= editwinrows (Ryan Krebs)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@563 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Chris Allegretta 2001-03-15 03:35:51 +00:00
parent 565f7d5558
commit e76f06ba1c
2 changed files with 2 additions and 1 deletions

View File

@ -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).

2
move.c
View File

@ -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) {