nano

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

commit 33b576c2891414c945b92702075c7da9386de41c
parent 1f39f60b2f2c41f92cac0ec4b3dec095d2b0e65d
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 23 Sep 2018 14:33:17 +0200

speller: remove a pointless message -- it is never seen

When using the internal spell checker, the message gets overwritten
immediately by "Creating misspelled word list...", and when using
the external spell checker, nano immediately exits from curses mode
and thus the message disappears (when in a terminal emulator) or it
soon gets wiped by the spell checker (when on a Linux console), thus
creating a little flash on the bottom row, which we can do without.

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

diff --git a/src/text.c b/src/text.c @@ -2981,7 +2981,6 @@ void do_spell(void) } blank_bottombars(); - statusbar(_("Invoking spell checker, please wait")); spell_msg = (alt_speller != NULL) ? do_alt_speller(temp) : do_int_speller(temp);