aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-01-27 02:36:05 +0000
committerRichard M. Stallman1996-01-27 02:36:05 +0000
commit10ba47834e573c03c0cac6678258dc9a0e8f795f (patch)
tree480927a5e320967e60dcc7d3ab192ca8c9ae8b73
parentbc07e5cb1e416d6b7df6deb3b0866c2fd1a79fdf (diff)
downloademacs-10ba47834e573c03c0cac6678258dc9a0e8f795f.tar.gz
emacs-10ba47834e573c03c0cac6678258dc9a0e8f795f.zip
(ispell-command-loop, ispell-region): Pass proper format string to message.
-rw-r--r--lisp/textmodes/ispell.el8
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index a104e91ebe7..fbbfa6507ac 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -1100,7 +1100,7 @@ used."
1100 ;; Quit and preserve point. 1100 ;; Quit and preserve point.
1101 ((= char ?X) 1101 ((= char ?X)
1102 (ispell-pdict-save ispell-silently-savep) 1102 (ispell-pdict-save ispell-silently-savep)
1103 (message 1103 (message "%s"
1104 (substitute-command-keys 1104 (substitute-command-keys
1105 (concat "Spell-checking suspended;" 1105 (concat "Spell-checking suspended;"
1106 " use C-u \\[ispell-word] to resume"))) 1106 " use C-u \\[ispell-word] to resume")))
@@ -1855,10 +1855,8 @@ With prefix argument, set the default directory."
1855 offset-change (+ offset-change change) 1855 offset-change (+ offset-change change)
1856 end (+ end change))))) 1856 end (+ end change)))))
1857 (if (not ispell-quit) 1857 (if (not ispell-quit)
1858 (message 1858 (message "Continuing spelling check using %s dictionary..."
1859 (concat "Continuing spelling check using " 1859 (or ispell-dictionary "default")))
1860 (or ispell-dictionary "default")
1861 " dictionary...")))
1862 (sit-for 0))) 1860 (sit-for 0)))
1863 ;; finished with line! 1861 ;; finished with line!
1864 (setq ispell-filter (cdr ispell-filter))))) 1862 (setq ispell-filter (cdr ispell-filter)))))