treat search_last_line as a boolean everywhere, and remove some unneeded

trailing spaces


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1768 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
David Lawrence Ramsey 2004-05-27 18:39:16 +00:00
parent 8328fc2439
commit c372488179
4 changed files with 9 additions and 9 deletions

View File

@ -318,7 +318,7 @@ int findnextstr(int can_display_wrap, int wholeword, const filestruct
/* Original start line reached. */ /* Original start line reached. */
if (fileptr == begin) if (fileptr == begin)
search_last_line = 1; search_last_line = TRUE;
rev_start = fileptr->data; rev_start = fileptr->data;
#ifndef NANO_SMALL #ifndef NANO_SMALL
if (ISSET(REVERSE_SEARCH)) if (ISSET(REVERSE_SEARCH))
@ -389,7 +389,7 @@ int do_search(void)
update_history(&search_history, answer); update_history(&search_history, answer);
#endif #endif
search_last_line = 0; search_last_line = FALSE;
didfind = findnextstr(TRUE, FALSE, current, current_x, answer, FALSE); didfind = findnextstr(TRUE, FALSE, current, current_x, answer, FALSE);
edit_refresh(); edit_refresh();
placewewant = xplustabs(); placewewant = xplustabs();
@ -440,7 +440,7 @@ int do_research(void)
return -1; return -1;
#endif #endif
search_last_line = 0; search_last_line = FALSE;
didfind = findnextstr(TRUE, FALSE, current, current_x, last_search, FALSE); didfind = findnextstr(TRUE, FALSE, current, current_x, last_search, FALSE);
edit_refresh(); edit_refresh();
placewewant = xplustabs(); placewewant = xplustabs();
@ -926,7 +926,7 @@ int do_find_bracket(void)
/* We constructed regexp_pat to be a valid expression. */ /* We constructed regexp_pat to be a valid expression. */
assert(regexp_compiled); assert(regexp_compiled);
search_last_line = 0; search_last_line = FALSE;
while (TRUE) { while (TRUE) {
if (findnextstr(FALSE, FALSE, current, current_x, regexp_pat, FALSE) != 0) { if (findnextstr(FALSE, FALSE, current, current_x, regexp_pat, FALSE) != 0) {
/* Found identical bracket. */ /* Found identical bracket. */