]> git.wh0rd.org Git - nano.git/commitdiff
remove unneeded #ifdef
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 9 Jul 2006 00:50:23 +0000 (00:50 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 9 Jul 2006 00:50:23 +0000 (00:50 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3771 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index 7e3feaaa479b6415cf1bdb0b223d91b7d9b5c5ff..3edae1ee594caf027874756795578a9a2f470dd0 100644 (file)
@@ -2010,11 +2010,8 @@ void titlebar(const char *path)
        state = openfile->modified ? _("Modified") : ISSET(VIEW_MODE) ?
                _("View") : "";
 
-    statelen = strlenpt((state[0] == '\0'
-#ifndef DISABLE_BROWSER
-       && path == NULL
-#endif
-       ) ? _("Modified") : state);
+    statelen = strlenpt((state[0] == '\0' && path == NULL) ?
+       _("Modified") : state);
 
     /* If possible, add a space before state. */
     if (space > 0 && statelen < space)