diff --git a/ChangeLog b/ChangeLog
index 118a22a1315ccf21dfe46883147d22af26305db2..fbb99952baba255033b9b54646ee35bf9f53b0b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -91,9 +91,6 @@ CVS code -
 	  number of columns is extremely small. (DLR)
 	- Don't display any blank space for the state if we're in the
 	  file browser, as Pico doesn't. (DLR)
-	- Since path is always assumed to be NULL if DISABLE_BROWSER is
-	  defined, put the check for its being NULL in a DISABLE_BROWSER
-	  #define. (DLR)
 - doc/syntax/c.nanorc:
 	- Since .i and .ii are preprocessed C and C++ output, colorize
 	  them here. (Mike Frysinger)
diff --git a/src/winio.c b/src/winio.c
index 2d7b2cbd7df8c8e5733c832268657975423da86c..7e3feaaa479b6415cf1bdb0b223d91b7d9b5c5ff 100644
--- a/src/winio.c
+++ b/src/winio.c
@@ -2042,9 +2042,7 @@ void titlebar(const char *path)
 
     /* If we're not in the file browser, path should be the current
      * filename. */
-#ifndef DISABLE_BROWSER
     if (path == NULL)
-#endif
 	path = openfile->filename;
 
     /* Account for the full lengths of the prefix and the state. */