nano

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

commit 85c2c2a5d20f12542717607add763bf44ffa3568
parent 61523be8d2cc0996ce1e809b09e385ac2c51bf42
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Mon, 12 May 2014 11:50:58 +0000

Providing startup feedback for the spell checker, as for the linter.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4856 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 3+++
Msrc/text.c | 4++++
2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,6 @@ +2014-05-12 Benno Schulenberg <bensberg@justemail.net> + * src/text.c (do_spell): Provide startup feedback, as for the linter. + 2014-05-10 Chris Allegretta <chrisa@asty.org> * src/rcfile.c (parse_color_names): Redefine false and true to their appropriate macro names so --with-slang works (slangv2 anyway). diff --git a/src/text.c b/src/text.c @@ -2956,6 +2956,10 @@ void do_spell(void) return; } + blank_bottombars(); + statusbar(_("Invoking spell checker, please wait")); + doupdate(); + spell_msg = (alt_speller != NULL) ? do_alt_speller(temp) : do_int_speller(temp); unlink(temp);