Ticket #3735: mcedit: show backwards-search error messages.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Mooffie 2016-12-03 23:00:30 +02:00 committed by Andrew Borodin
parent 7bb0b519f4
commit 5f73bd0ff3

View File

@ -868,8 +868,9 @@ editcmd_find (edit_search_status_msg_t * esm, gsize * len)
if (ok && edit->search->normal_offset == search_start)
return TRUE;
/* Abort search. */
if (!ok && edit->search->error == MC_SEARCH_E_ABORT)
/* We abort the search in case of a pattern error, or if the user aborts
the search. In other words: in all cases except "string not found". */
if (!ok && edit->search->error != MC_SEARCH_E_NOTFOUND)
return FALSE;
if ((edit->search_line_type & AT_START_LINE) != 0)