summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-25 00:57:01 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-25 00:57:01 +0000
commitf68f40e039931dc9c4ab223f7f8880cd3abdb629 (patch)
tree28510de8eb72754f4d504d153f1eb043ef9ea017
parent26544100fa650d01438291943b9e1c1e46258aab (diff)
downloademacs-f68f40e039931dc9c4ab223f7f8880cd3abdb629.tar.gz
(sgml-tag-help): Pass proper format string to message.
-rw-r--r--lisp/textmodes/sgml-mode.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index f146e21a4b3..b71e0a2f129 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -530,7 +530,8 @@ With prefix ARG only self insert."
(or (stringp tag)
(error "No tag selected"))
(setq tag (downcase tag))
- (message (or (cdr (assoc tag sgml-tag-help))
+ (message "%s"
+ (or (cdr (assoc tag sgml-tag-help))
(and (eq (aref tag 0) ?/)
(cdr (assoc (substring tag 1) sgml-tag-help)))
"No description available")))