]> git.wh0rd.org Git - nano.git/commitdiff
in do_spell(), call total_redraw() instead of total_refresh() after
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 9 Jun 2006 16:34:00 +0000 (16:34 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 9 Jun 2006 16:34:00 +0000 (16:34 +0000)
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

ChangeLog
src/text.c

index 25a6aa6bb86539712c0c9f81c94cba38499bd761..518c3e252548da3903730e4ef89e24b79b75b5bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
index 847d6e7ca9da670370a4f3b7b83883999f839228..7cdc8268d4364bfb22ce0fee4cd8287b922141b9 100644 (file)
@@ -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)