Commit 3ce7e9dc authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in do_spell(), call total_redraw() instead of total_refresh() after

running the spell-checker, since the latter will display the wrong
shortcut list


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3649 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
......@@ -346,6 +346,9 @@ CVS code -
do_spell()
- Clarify the error message when creating a temporary file
fails. (DLR)
- Call total_redraw() instead of total_refresh() after running
the spell-checker, since the latter will display the wrong
shortcut list. (DLR)
do_verbatim_input()
- Add a translator comment explaining the "Verbatim Input"
statusbar message. (Benno Schulenberg)
......
......@@ -2336,7 +2336,7 @@ void do_spell(void)
/* If the spell-checker printed any error messages onscreen, make
* sure that they're cleared off. */
total_refresh();
total_redraw();
if (spell_msg != NULL) {
if (errno == 0)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment