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-d3aeb78583b8
master
Chris Allegretta 2001-12-02 06:03:22 +00:00
parent db4c08e8f9
commit 8083827088
2 changed files with 7 additions and 2 deletions

View File

@ -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
View File

@ -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 */