]> git.wh0rd.org Git - nano.git/commitdiff
fix inaccurate comments
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 7 Jul 2006 16:21:45 +0000 (16:21 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 7 Jul 2006 16:21:45 +0000 (16:21 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3767 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/browser.c
src/winio.c

index 9360f7ddb93511d1a7c8bfeba1f5e40e1039e25c..45f7a0343c0a6c08f4ebc0f749cc25dfdba84c30 100644 (file)
@@ -619,14 +619,14 @@ void browser_refresh(void)
        bool dots = (COLS >= 15 && filetaillen >= longest -
                foomaxlen - 1);
                /* Do we put an ellipsis before the filename?  Don't set
-                * this to TRUE if we have fewer than 15 columns (i.e, 7
-                * columns for a filename other than ".."). */
+                * this to TRUE if we have fewer than 15 columns (i.e, 1
+                * column for padding, plus 7 columns for a filename
+                * other than ".."). */
        char *disp = display_string(filetail, dots ? filetaillen -
                longest + foomaxlen + 4 : 0, longest, FALSE);
                /* If we put an ellipsis before the filename, reserve 1
-                * column for padding, plus foomaxlen columns for "--",
-                * "(dir)", or the file size, plus 3 columns for the
-                * ellipsis. */
+                * column for padding, plus 7 columns for "--", "(dir)",
+                * or the file size, plus 3 columns for the ellipsis. */
 
        /* Start highlighting the currently selected file or
         * directory. */
index 72a1a60c6aec6ac7f9014af7b8625f26ec11d305..1000a4025d3dad970885c82bb4d39d6900614162 100644 (file)
@@ -2051,8 +2051,8 @@ void titlebar(const char *path)
     if (!newfie) {
        size_t lenpt = strlenpt(path), start_col;
 
-       /* Don't set dots to TRUE if we have fewer than 7 columns for
-        * a filename. */
+       /* Don't set dots to TRUE if we have fewer than 8 columns (i.e,
+        * 1 column for padding, plus 7 columns for a filename). */
        dots = (space >= 7 && lenpt >= space);
 
        if (dots) {