spelling: pass the correct position of the cursor

When starting to replace misspelled words, pass the actual position
of the cursor instead of the position of the first found occurrence,
so that the cursor position will be updated for changed lengths.

This fixes https://savannah.gnu.org/bugs/?47834.
master
Benno Schulenberg 2016-05-03 11:17:45 +02:00
parent cc0a3d8490
commit 937c47898a
1 changed files with 1 additions and 2 deletions

View File

@ -2449,8 +2449,7 @@ bool do_int_spell_fix(const char *word)
/* If a replacement was given, go through all occurrences. */
if (proceed && strcmp(word, answer) != 0) {
openfile->current_x--;
do_replace_loop(TRUE, openfile->current,
&openfile->current_x, word);
do_replace_loop(TRUE, current_save, &current_x_save, word);
}
}