- change findnextstr() to only edit_update if we have gone off the screen.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@95 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Adam Rogoyski 2000-07-09 00:15:11 +00:00
parent a4d2162091
commit 2a4ef924c8
1 changed files with 9 additions and 2 deletions

View File

@ -128,6 +128,7 @@ filestruct *findnextstr(int quiet, filestruct * begin, char *needle)
{
filestruct *fileptr;
char *searchstr, *found = NULL, *tmp;
int past_editbot = 0;
fileptr = current;
@ -135,8 +136,12 @@ filestruct *findnextstr(int quiet, filestruct * begin, char *needle)
/* Look for searchstr until EOF */
while (fileptr != NULL &&
(found = strstrwrapper(searchstr, needle)) == NULL) {
if (!past_editbot && (fileptr == editbot))
past_editbot = 1;
fileptr = fileptr->next;
if (fileptr == begin)
return NULL;
@ -151,6 +156,7 @@ filestruct *findnextstr(int quiet, filestruct * begin, char *needle)
for (tmp = fileptr->data; tmp != found; tmp++)
current_x++;
if (past_editbot)
edit_update(current);
reset_cursor();
} else { /* We're at EOF, go back to the top, once */
@ -173,6 +179,7 @@ filestruct *findnextstr(int quiet, filestruct * begin, char *needle)
for (tmp = fileptr->data; tmp != found; tmp++)
current_x++;
if (past_editbot)
edit_update(current);
reset_cursor();