]> git.wh0rd.org Git - nano.git/commitdiff
add missing bit
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 23 May 2004 21:17:56 +0000 (21:17 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 23 May 2004 21:17:56 +0000 (21:17 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1755 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index d5a4879c79c3fc513fcc7725dac3a9f9ae7aaf1c..65da05a6ad1dfdd4b47cfe37e9134cef1458955b 100644 (file)
@@ -1621,10 +1621,7 @@ void titlebar(const char *path)
 
     if (path == NULL)
        path = filename;
-    if (space > prefixlen + statelen)
-       space -= prefixlen + statelen;
-    else
-       space = 0;
+    space -= prefixlen + statelen;
        /* space is now the room we have for the file name. */
     if (!newbuffer) {
        size_t lenpt = strlenpt(path), start_col;
@@ -1650,7 +1647,7 @@ void titlebar(const char *path)
     } else {
        /* We will say something like "File: ...ename". */
        waddnstr(topwin, prefix, prefixlen);
-       if (space == 0 || newbuffer)
+       if (space <= 0 || newbuffer)
            goto the_end;
        waddch(topwin, ' ');
        waddnstr(topwin, "...", space);