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
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -385,7 +385,7 @@ void do_search(void)
#ifndef DISABLE_WRAPPING
wrap_reset();
#endif
i = search_init(0);
i = search_init(FALSE);
if (i == -1) /* Cancel, Go to Line, blank search string, or
* regcomp() failed. */
search_abort();
......@@ -778,7 +778,7 @@ void do_replace(void)
return;
}
i = search_init(1);
i = search_init(TRUE);
if (i == -1) { /* Cancel, Go to Line, blank search
* string, or regcomp() failed. */
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