diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:54:34 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:54:34 +0000 |
commit | 4dc721f6bc5b4cc3defea4b3691098ba209f386f (patch) | |
tree | 784c37e638e172fa294ea5cab4466497516dbf3b /lisp/help-macro.el | |
parent | 662d8d8a19f332c78cde9808b47a63f157040046 (diff) | |
download | emacs-4dc721f6bc5b4cc3defea4b3691098ba209f386f.tar.gz |
(make-help-screen): Pass proper format string to message.
Diffstat (limited to 'lisp/help-macro.el')
-rw-r--r-- | lisp/help-macro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-macro.el b/lisp/help-macro.el index 28c040d6b58..ff9c71b3ee0 100644 --- a/lisp/help-macro.el +++ b/lisp/help-macro.el @@ -91,7 +91,7 @@ and then returns." (let ((line-prompt (substitute-command-keys (, help-line)))) (if three-step-help - (message line-prompt)) + (message "%s" line-prompt)) (let* ((help-screen (documentation (quote (, fname)))) ;; We bind overriding-local-map for very small ;; sections, *excluding* where we switch buffers |