]> git.wh0rd.org Git - nano.git/commitdiff
comment fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 6 Jul 2006 20:36:01 +0000 (20:36 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 6 Jul 2006 20:36:01 +0000 (20:36 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3761 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/move.c

index 3af92a33a61d4fbbed8d63ac278bf5794f082693..76b222750f8d3cd6ac9bd3117d723c071253805f 100644 (file)
@@ -494,9 +494,10 @@ void do_up(void)
                ISSET(SMOOTH_SCROLL) ? 1 :
 #endif
                editwinrows / 2);
-    /* Update the line we were on before and the line we're on now.  The
-     * former needs to be redrawn if we're not on the first page, and
-     * the latter needs to be drawn unconditionally. */
+    /* If we're not on the first line of the edit window, update the
+     * line we were on before and the line we're on now.  The former
+     * needs to be redrawn if we're not on the first page, and the
+     * latter needs to be drawn unconditionally. */
     else {
        if (need_vertical_update(0))
            update_line(openfile->current->next, 0);
@@ -547,9 +548,10 @@ void do_down(void)
                ISSET(SMOOTH_SCROLL) ? 1 :
 #endif
                editwinrows / 2);
-    /* Update the line we were on before and the line we're on now.  The
-     * former needs to be redrawn if we're not on the first page, and
-     * the latter needs to be drawn unconditionally. */
+    /* If we're not on the last line of the edit window, update the line
+     * we were on before and the line we're on now.  The former needs to
+     * be redrawn if we're not on the first page, and the latter needs
+     * to be drawn unconditionally. */
     else {
        if (need_vertical_update(0))
            update_line(openfile->current->prev, 0);