Commit 25884f3b authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

more int -> bool conversions

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1950 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 9bab9ff5
Showing with 2 additions and 2 deletions
+2 -2
...@@ -385,7 +385,7 @@ void do_search(void) ...@@ -385,7 +385,7 @@ void do_search(void)
#ifndef DISABLE_WRAPPING #ifndef DISABLE_WRAPPING
wrap_reset(); wrap_reset();
#endif #endif
i = search_init(0); i = search_init(FALSE);
if (i == -1) /* Cancel, Go to Line, blank search string, or if (i == -1) /* Cancel, Go to Line, blank search string, or
* regcomp() failed. */ * regcomp() failed. */
search_abort(); search_abort();
...@@ -778,7 +778,7 @@ void do_replace(void) ...@@ -778,7 +778,7 @@ void do_replace(void)
return; return;
} }
i = search_init(1); i = search_init(TRUE);
if (i == -1) { /* Cancel, Go to Line, blank search if (i == -1) { /* Cancel, Go to Line, blank search
* string, or regcomp() failed. */ * string, or regcomp() failed. */
replace_abort(); replace_abort();
......
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