in do_spell(), if the spell-checker printed any error messages onscreen,
make sure they're cleared off git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2681 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
f271f9c962
commit
072f86c5f9
|
@ -178,6 +178,9 @@ CVS code -
|
||||||
- Replace a set_modified() with SET(MODIFIED) to avoid an
|
- Replace a set_modified() with SET(MODIFIED) to avoid an
|
||||||
unnecessary update, and remove an unneeded clearok(FALSE).
|
unnecessary update, and remove an unneeded clearok(FALSE).
|
||||||
(DLR)
|
(DLR)
|
||||||
|
do_spell()
|
||||||
|
- If the spell-checker printed any error messages onscreen, make
|
||||||
|
sure they're cleared off. (DLR, found by CHAO Wei-Lun)
|
||||||
do_output()
|
do_output()
|
||||||
- Properly allow wrapping when we insert a tab, for consistency.
|
- Properly allow wrapping when we insert a tab, for consistency.
|
||||||
(DLR)
|
(DLR)
|
||||||
|
|
|
@ -2476,6 +2476,10 @@ void do_spell(void)
|
||||||
unlink(temp);
|
unlink(temp);
|
||||||
free(temp);
|
free(temp);
|
||||||
|
|
||||||
|
/* If the spell-checker printed any error messages onscreen, make
|
||||||
|
* sure they're cleared off. */
|
||||||
|
total_update();
|
||||||
|
|
||||||
if (spell_msg != NULL)
|
if (spell_msg != NULL)
|
||||||
statusbar(_("Spell checking failed: %s: %s"), spell_msg,
|
statusbar(_("Spell checking failed: %s: %s"), spell_msg,
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
|
|
Loading…
Reference in New Issue