aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1996-01-25 00:54:34 +0000
committerKarl Heuer1996-01-25 00:54:34 +0000
commit7e6fe07f0c3bc8cc2868d5e397fea994d136f15d (patch)
treede190035cb6f483fca8d3ec3901b5680927762fa /lisp
parent5edb2df7d3f0bbb95dc694bcd313238432541cb7 (diff)
downloademacs-7e6fe07f0c3bc8cc2868d5e397fea994d136f15d.tar.gz
emacs-7e6fe07f0c3bc8cc2868d5e397fea994d136f15d.zip
(make-help-screen): Pass proper format string to message.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/help-macro.el2
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."
91 (let ((line-prompt 91 (let ((line-prompt
92 (substitute-command-keys (, help-line)))) 92 (substitute-command-keys (, help-line))))
93 (if three-step-help 93 (if three-step-help
94 (message line-prompt)) 94 (message "%s" line-prompt))
95 (let* ((help-screen (documentation (quote (, fname)))) 95 (let* ((help-screen (documentation (quote (, fname))))
96 ;; We bind overriding-local-map for very small 96 ;; We bind overriding-local-map for very small
97 ;; sections, *excluding* where we switch buffers 97 ;; sections, *excluding* where we switch buffers