diff options
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-prog.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/calc/calc-prog.el b/lisp/calc/calc-prog.el index f11d9741ec7..127f6340a1e 100644 --- a/lisp/calc/calc-prog.el +++ b/lisp/calc/calc-prog.el @@ -1447,7 +1447,8 @@ Redefine the corresponding command." (let ((calc-kbd-push-level 0)) (execute-kbd-macro (substring body 0 -2)))) (let ((calc-kbd-push-level (1+ calc-kbd-push-level))) - (message "%s" "Saving modes; type Z' to restore") + ;; Avoid substituting the "'" character: + (message "%s" "Saving modes; type Z' to restore") (recursive-edit)))))) (defun calc-kbd-pop () |