Commit 81e49a0d authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

fix #ifdef

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2589 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
...@@ -457,9 +457,11 @@ void do_search(void) ...@@ -457,9 +457,11 @@ void do_search(void)
search_abort(); search_abort();
else if (i == -2) /* Replace. */ else if (i == -2) /* Replace. */
do_replace(); do_replace();
#if !defined(NANO_SMALL) || defined(HAVE_REGEX_H)
else if (i == 1) /* Case Sensitive, Backwards, or Regexp search else if (i == 1) /* Case Sensitive, Backwards, or Regexp search
* toggle. */ * toggle. */
do_search(); do_search();
#endif
if (i != 0) if (i != 0)
return; return;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment