]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 5 Jul 2006 05:43:20 +0000 (05:43 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 5 Jul 2006 05:43:20 +0000 (05:43 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3750 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/browser.c

index d1d9a97807f0170d6f7b812072ab6c628226d877..6cacef0b0e0455f0dd5d6f8d1ffd7f6a4fe83408 100644 (file)
@@ -616,7 +616,8 @@ void browser_refresh(void)
                /* The maximum length of the file information in
                 * columns: 7 for "--", "(dir)", or the file size, and
                 * 12 for "(parent dir)". */
-       bool dots = (filetaillen > longest - foomaxlen - 1);
+       bool dots = (COLS < 15 ? FALSE : filetaillen > longest -
+               foomaxlen - 1);
                /* Do we put an ellipsis before the filename? */
        char *disp = display_string(filetail, dots ? filetaillen -
                longest + foomaxlen + 4 : 0, longest, FALSE);