]> git.wh0rd.org Git - nano.git/commitdiff
more typo fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 23 Apr 2006 01:33:37 +0000 (01:33 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 23 Apr 2006 01:33:37 +0000 (01:33 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3416 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/help.c

index 8497cc00187c88ecb6479f69ab2d41d88780ca28..7d9011e74ebe87ec2673c50d59a1c9950900f74a 100644 (file)
@@ -423,12 +423,12 @@ void help_init(void)
                     * of blank space.  If this entry takes up more than
                     * one entry's worth of space, use two to display
                     * it. */
-                   if (strlen(space_ptr) + 1 > 7)
+                   if (strlen(space_ptr) > 6)
                        entries++;
                } else
                    /* Otherwise, truncate it so that it takes up only
                     * one entry's worth of space. */
-                   space_ptr[7] = '\0';
+                   space_ptr[6] = '\0';
 
                ptr += sprintf(ptr, "^%s", space_ptr);
 
@@ -471,7 +471,7 @@ void help_init(void)
                /* If we're here, we have at least two entries worth of
                 * blank space.  If this entry takes up more than one
                 * entry's worth of space, use two to display it. */
-               if (strlen(space_ptr) + 2 > 7)
+               if (strlen(space_ptr) > 5)
                    entries++;
 
                ptr += sprintf(ptr, "M-%s", space_ptr);