remove unneeded #ifdef

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3771 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2006-07-09 00:50:23 +00:00
parent 4e68588596
commit e328169b6d
1 changed files with 2 additions and 5 deletions

View 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)