From bb06fae40313387d1a6bde600675d9942d9feb1b Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@justemail.net>
Date: Wed, 26 Mar 2014 19:59:45 +0000
Subject: [PATCH] Fixing compilation with --disable-browser.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4686 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 ChangeLog  | 1 +
 src/help.c | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 330106f5..f2460b01 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@
 	vestiges of the obsolete '--enable-all' configure flag.
 	* src/rcfile.c - Fix compilation with --disable-color.
 	* src/rcfile.c - Allow (un)binding keys when colour is disabled.
+	* src/help.c - Fix compilation with --disable-browser.
 
 2014-03-26  Mike Frysinger  <vapier@gentoo.org>.
 	* configure.ac - Clean up most of the --with/--enable flags:
diff --git a/src/help.c b/src/help.c
index c492c274..9d81ea00 100644
--- a/src/help.c
+++ b/src/help.c
@@ -551,14 +551,16 @@ void do_help_void(void)
 {
 #ifndef DISABLE_HELP
     /* Start the help browser, with the correct refresher for afterwards. */
+#ifndef DISABLE_BROWSER
     if (currmenu == MBROWSER || currmenu == MWHEREISFILE || currmenu == MGOTODIR)
 	do_help(&browser_refresh);
     else
+#endif
 	do_help(&edit_refresh);
 #else
     if (currmenu == MMAIN)
 	nano_disabled_msg();
     else
 	beep();
-#endif
+#endif /* !DISABLE_HELP */
 }
-- 
GitLab