]> git.wh0rd.org Git - nano.git/commitdiff
move.c: page_down() - Oops, check for <= editwinrows (Ryan Krebs)
authorChris Allegretta <chrisa@asty.org>
Thu, 15 Mar 2001 03:35:51 +0000 (03:35 +0000)
committerChris Allegretta <chrisa@asty.org>
Thu, 15 Mar 2001 03:35:51 +0000 (03:35 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@563 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
move.c

index 5e25e1884d2c54184583d27bd4ea820ba30de1a1..d2d1e4e70bd69de20fd69008666d64429e42151c 100644 (file)
--- 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 bda2c3c84573dd37755a30bdf83a89f16bb6d656..e81a452356785b94ec5044c4c7cbff4d9676dff3 100644 (file)
--- 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) {