]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 1 Mar 2005 22:47:00 +0000 (22:47 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 1 Mar 2005 22:47:00 +0000 (22:47 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2331 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index e82abeaf3065348e5eab3acb8b594d37f79c51e1..f3ed69bb3e7ab4e13be7ad67e330b742cf6238bd 100644 (file)
@@ -3801,11 +3801,13 @@ int help_line_len(const char *ptr)
            ptr--;
            j--;
        }
-       /* Word longer than COLS - 5 chars just gets broken. */
+       /* A word longer than (COLS - 5) chars just gets broken. */
        if (j == 0)
            j = COLS - 5;
     }
+
     assert(j >= 0 && j <= COLS - 4 && (j > 0 || *ptr == '\n'));
+
     return j;
 }
 
@@ -3813,8 +3815,8 @@ int help_line_len(const char *ptr)
 void do_help(void)
 {
     int line = 0;
-       /* The line number in help_text of the first displayed help line.
-        * This variable is zero-based. */
+       /* The line number in help_text of the first displayed help
+        * line.  This variable is zero-based. */
     bool no_more = FALSE;
        /* no_more means the end of the help text is shown, so don't go
         * down any more. */