From e328169b6de621afd4a13a389f7b405981a150fa Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Sun, 9 Jul 2006 00:50:23 +0000
Subject: [PATCH] remove unneeded #ifdef

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3771 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 src/winio.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

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