]> git.eshelyaron.com Git - emacs.git/commitdiff
(ispell-command-loop): Disable message logging.
authorKarl Heuer <kwzh@gnu.org>
Tue, 11 Mar 1997 22:27:36 +0000 (22:27 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 11 Mar 1997 22:27:36 +0000 (22:27 +0000)
(ispell-region): Ditto.

lisp/textmodes/ispell.el

index dd553fa90e7bdb9ac87dc840e862aef94ef0ff1b..a6e5afd6406598a82b9e1f4a740b883279a37eec 100644 (file)
@@ -1060,8 +1060,9 @@ used."
                result
                (progn
                  (undo-boundary)
-                 (message (concat "C-h or ? for more options; SPC to leave "
-                                  "unchanged, Character to replace word"))
+                 (let (message-log-max)
+                   (message (concat "C-h or ? for more options; SPC to leave "
+                                    "unchanged, Character to replace word")))
                  (let ((inhibit-quit t))
                    (setq char (if (fboundp 'read-char-exclusive)
                                   (read-char-exclusive)
@@ -1864,8 +1865,9 @@ With prefix argument, set the default directory."
                                        offset-change (+ offset-change change)
                                        end (+ end change)))))
                              (if (not ispell-quit)
-                                 (message "Continuing spelling check using %s dictionary..."
-                                          (or ispell-dictionary "default")))
+                                 (let (message-log-max)
+                                   (message "Continuing spelling check using %s dictionary..."
+                                            (or ispell-dictionary "default"))))
                              (sit-for 0)))
                        ;; finished with line!
                        (setq ispell-filter (cdr ispell-filter)))))