aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-07-14 18:53:40 +0300
committerEli Zaretskii2018-07-14 18:53:40 +0300
commit90110f8499c5b3e26c67d3e15cc8dccd9ef057cf (patch)
tree174c588d6020b2917dbf98f9dbb6e29a3697a7fd
parentf4e7f6d73d1dbb260dfce3fcc51cb0d5838cf1bf (diff)
downloademacs-90110f8499c5b3e26c67d3e15cc8dccd9ef057cf.tar.gz
emacs-90110f8499c5b3e26c67d3e15cc8dccd9ef057cf.zip
Don't use a literal "C-u" in ispell.el help message text
* lisp/textmodes/ispell.el (ispell-command-loop): Use "\\[universal-argument]" instead of a literal "C-u". (Bug#32142)
-rw-r--r--lisp/textmodes/ispell.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 39e8869ea94..e77bc7e1128 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -2271,8 +2271,9 @@ Global `ispell-quit' set to start location to continue spell session."
2271 (ispell-pdict-save ispell-silently-savep) 2271 (ispell-pdict-save ispell-silently-savep)
2272 (message "%s" 2272 (message "%s"
2273 (substitute-command-keys 2273 (substitute-command-keys
2274 (concat "Spell-checking suspended;" 2274 (concat
2275 " use C-u \\[ispell-word] to resume"))) 2275 "Spell-checking suspended; use "
2276 "\\[universal-argument] \\[ispell-word] to resume")))
2276 (setq ispell-quit start) 2277 (setq ispell-quit start)
2277 nil) 2278 nil)
2278 ((= char ?q) 2279 ((= char ?q)