diff options
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-embed.el | 3 | ||||
-rw-r--r-- | lisp/calc/calc-prog.el | 2 | ||||
-rw-r--r-- | lisp/calc/calc-yank.el | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/lisp/calc/calc-embed.el b/lisp/calc/calc-embed.el index 9a580d9602a..bb427ef86e6 100644 --- a/lisp/calc/calc-embed.el +++ b/lisp/calc/calc-embed.el @@ -335,7 +335,8 @@ (message (concat "Embedded Calc mode enabled; " (if calc-embedded-quiet - "Type `C-x * x'" + (substitute-command-keys + "Type \\`C-x * x'") "Give this command again") " to return to normal"))))) (scroll-down 0))) ; fix a bug which occurs when truncate-lines is changed. diff --git a/lisp/calc/calc-prog.el b/lisp/calc/calc-prog.el index ec30ee7e0fa..f11d9741ec7 100644 --- a/lisp/calc/calc-prog.el +++ b/lisp/calc/calc-prog.el @@ -678,7 +678,7 @@ (or last-kbd-macro (error "No keyboard macro defined")) (setq calc-invocation-macro last-kbd-macro) - (message "Use `C-x * Z' to invoke this macro")) + (message (substitute-command-keys "Use \\`C-x * Z' to invoke this macro"))) (defun calc-user-define-edit () (interactive) ; but no calc-wrapper! diff --git a/lisp/calc/calc-yank.el b/lisp/calc/calc-yank.el index c98505a0b1d..71cc68b0c20 100644 --- a/lisp/calc/calc-yank.el +++ b/lisp/calc/calc-yank.el @@ -715,9 +715,9 @@ To cancel the edit, simply kill the *Calc Edit* buffer." (insert (propertize (concat (or title title "Calc Edit Mode. ") - (format-message "Press `C-c C-c'") + (substitute-command-keys "Press \\`C-c C-c'") (if allow-ret "" " or RET") - (format-message " to finish, `C-x k RET' to cancel.\n\n")) + (substitute-command-keys " to finish, \\`C-x k RET' to cancel.\n\n")) 'font-lock-face 'italic 'read-only t 'rear-nonsticky t 'front-sticky t)) (setq-local calc-edit-top (point)))) |