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)
This commit is contained in:
parent
f4e7f6d73d
commit
90110f8499
1 changed files with 3 additions and 2 deletions
|
@ -2271,8 +2271,9 @@ Global `ispell-quit' set to start location to continue spell session."
|
||||||
(ispell-pdict-save ispell-silently-savep)
|
(ispell-pdict-save ispell-silently-savep)
|
||||||
(message "%s"
|
(message "%s"
|
||||||
(substitute-command-keys
|
(substitute-command-keys
|
||||||
(concat "Spell-checking suspended;"
|
(concat
|
||||||
" use C-u \\[ispell-word] to resume")))
|
"Spell-checking suspended; use "
|
||||||
|
"\\[universal-argument] \\[ispell-word] to resume")))
|
||||||
(setq ispell-quit start)
|
(setq ispell-quit start)
|
||||||
nil)
|
nil)
|
||||||
((= char ?q)
|
((= char ?q)
|
||||||
|
|
Loading…
Add table
Reference in a new issue