Commit 523bc0fd authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

speller: don't proceed when the user aborts the searching


When searching for a misspelled word takes a while, and the user
stops this search with ^C, then abort the spelling-checking session.
Signed-off-by: default avatarBenno Schulenberg <bensberg@justemail.net>
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -2359,7 +2359,7 @@ bool do_int_spell_fix(const char *word)
filestruct *edittop_save = openfile->edittop;
filestruct *current_save = openfile->current;
/* Save where we are. */
bool proceed = TRUE;
bool proceed = FALSE;
/* The return value of this function. */
bool result;
/* The return value of searching for a misspelled word. */
......
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