nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 80838270882029767f553e3eaf4146aaa4e608f5
parent db4c08e8f92fbe4442c6ab56a508b2092c4cf6e4
Author: Chris Allegretta <chrisa@asty.org>
Date:   Sun,  2 Dec 2001 06:03:22 +0000

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

Diffstat:
MChangeLog | 3+++
Mnano.c | 6++++--
2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -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: diff --git a/nano.c b/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 */