nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 81e49a0d4acbb43439727bff564275b6361b684f
parent c10d8ffe9fbe4d574e0717483a6cd0eb07f475a1
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri,  3 Jun 2005 21:00:55 +0000

fix #ifdef


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2589 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/search.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/search.c b/src/search.c @@ -457,9 +457,11 @@ void do_search(void) search_abort(); else if (i == -2) /* Replace. */ do_replace(); +#if !defined(NANO_SMALL) || defined(HAVE_REGEX_H) else if (i == 1) /* Case Sensitive, Backwards, or Regexp search * toggle. */ do_search(); +#endif if (i != 0) return;