nano

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

commit 9266fa6657d28f802d56306d02de51cc7fbf4593
parent 6360e4170a0015a77b04b7c1bcd48dad4fa75804
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon, 11 Jan 2021 15:52:46 +0100

speller: do an internal spell check when --speller is an empty string

This fixes https://savannah.gnu.org/bugs/?59855.
Indirectly-reported-by: Mike Frysinger <vapier@gentoo.org>

Bug existed since version 2.9.6, commit 94347f08.

Diffstat:
Msrc/text.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/text.c b/src/text.c @@ -2533,7 +2533,7 @@ void do_spell(void) blank_bottombars(); - if (alt_speller) + if (alt_speller && *alt_speller) treat(temp_name, alt_speller, TRUE); else do_int_speller(temp_name);