From: David Lawrence Ramsey Date: Sun, 9 Jul 2006 00:50:23 +0000 (+0000) Subject: remove unneeded #ifdef X-Git-Tag: v1.9.99pre1~90 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e328169b6de621afd4a13a389f7b405981a150fa;p=nano.git remove unneeded #ifdef git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3771 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/winio.c b/src/winio.c index 7e3feaaa..3edae1ee 100644 --- a/src/winio.c +++ b/src/winio.c @@ -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)