]> git.wh0rd.org Git - nano.git/commitdiff
Fixing compilation with --enable-browser and tiny.
authorBenno Schulenberg <bensberg@justemail.net>
Fri, 4 Apr 2014 15:31:40 +0000 (15:31 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Fri, 4 Apr 2014 15:31:40 +0000 (15:31 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4724 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/proto.h
src/search.c

index b1d3874362b709ae5aa378ee10ea6d9d956fd76d..b4b5a037d7f529bd05ec4e417dddcced456870fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,11 +6,12 @@
        to suppress a fatal-error message, make sure the user sees it.
        * src/color.c: Comment tweaks.
        * src/{*.h,*.c}, configure.ac:Convert all occurrences of
-       #ifdef ENABLE_COLOR to #ifndef DISABLE_COLOR.
+       #ifdef ENABLE_COLOR to #ifndef DISABLE_COLOR.
        * src/nano.h: Comment tweaks.
        * configure.ac: Move the enabling stuff to after the disablers.
        * configure.ac: Add submissive colour disabling to --enable-tiny.
        * configure.ac: Allow other enablers to override --enable-tiny too.
+       * src/{proto.h,search.c}: Fix compilation with --enable-browser.
 
 2014-04-03  Benno Schulenberg  <bensberg@justemail.net>
        * configure.ac: Remove unused '*_support' variables.
index f50d92bb1d34bb45b30e38387beef1a774abee71..33dd363f290e3d447fea2ceac2ac2e4de4af2350 100644 (file)
@@ -588,7 +588,7 @@ bool findnextstr(
        char *needle, size_t *needle_len);
 void findnextstr_wrap_reset(void);
 void do_search(void);
-#ifndef NANO_TINY
+#if !defined(NANO_TINY) || !defined(DISABLE_BROWSER)
 void do_research(void);
 #endif
 #ifdef HAVE_REGEX_H
index d7bfb9090cbe1984ec2d72fdacecc4f80dd0038e..393c804a5a6544e1cd89493d09c7d6275809605d 100644 (file)
@@ -525,7 +525,7 @@ void do_search(void)
     search_replace_abort();
 }
 
-#ifndef NANO_TINY
+#if !defined(NANO_TINY) || !defined(DISABLE_BROWSER)
 /* Search for the last string without prompting. */
 void do_research(void)
 {