Oh, reset multi data in search.c;do_replace_loop() too.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4380 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
b71cf301da
commit
86988b5026
|
@ -719,6 +719,9 @@ ssize_t do_replace_loop(
|
||||||
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
||||||
openfile->edittop = openfile->fileage;
|
openfile->edittop = openfile->fileage;
|
||||||
openfile->mark_set = FALSE;
|
openfile->mark_set = FALSE;
|
||||||
|
#ifdef ENABLE_COLOR
|
||||||
|
reset_multis(openfile->current, TRUE);
|
||||||
|
#endif
|
||||||
edit_refresh();
|
edit_refresh();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -863,6 +866,10 @@ ssize_t do_replace_loop(
|
||||||
free(openfile->current->data);
|
free(openfile->current->data);
|
||||||
openfile->current->data = copy;
|
openfile->current->data = copy;
|
||||||
|
|
||||||
|
#ifdef ENABLE_COLOR
|
||||||
|
reset_multis(openfile->current, TRUE);
|
||||||
|
#endif
|
||||||
|
edit_refresh();
|
||||||
if (!replaceall) {
|
if (!replaceall) {
|
||||||
#ifdef ENABLE_COLOR
|
#ifdef ENABLE_COLOR
|
||||||
/* If color syntaxes are available and turned on, we
|
/* If color syntaxes are available and turned on, we
|
||||||
|
|
Loading…
Reference in New Issue