remove unneeded #ifdef
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3771 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
4e68588596
commit
e328169b6d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue