do_spell() - Dont prompt for replace if we don't change the word in question (Rocco Corsi).
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@917 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
db4c08e8f9
commit
8083827088
|
@ -30,6 +30,9 @@ CVS Code -
|
|||
position (David Lawrence Ramsey).
|
||||
do_wrap()
|
||||
- Many fixes (David Lawrence Ramsey).
|
||||
do_spell()
|
||||
- Dont prompt for replace if we don't change the word in
|
||||
question (Rocco Corsi).
|
||||
- po/de.po:
|
||||
- German translation updates (Karl Eichwalder).
|
||||
- po/ru.po:
|
||||
|
|
6
nano.c
6
nano.c
|
@ -1482,8 +1482,10 @@ int do_int_spell_fix(char *word)
|
|||
|
||||
search_last_line = FALSE;
|
||||
|
||||
j = i;
|
||||
do_replace_loop(prevanswer, fileage, &beginx_top, TRUE, &j);
|
||||
if (strcmp(prevanswer,answer) != 0) {
|
||||
j = i;
|
||||
do_replace_loop(prevanswer, fileage, &beginx_top, TRUE, &j);
|
||||
}
|
||||
}
|
||||
|
||||
/* restore the search/replace strings */
|
||||
|
|
Loading…
Reference in New Issue