aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1996-01-25 00:57:01 +0000
committerKarl Heuer1996-01-25 00:57:01 +0000
commitf68f40e039931dc9c4ab223f7f8880cd3abdb629 (patch)
tree28510de8eb72754f4d504d153f1eb043ef9ea017
parent26544100fa650d01438291943b9e1c1e46258aab (diff)
downloademacs-f68f40e039931dc9c4ab223f7f8880cd3abdb629.tar.gz
emacs-f68f40e039931dc9c4ab223f7f8880cd3abdb629.zip
(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."
530 (or (stringp tag) 530 (or (stringp tag)
531 (error "No tag selected")) 531 (error "No tag selected"))
532 (setq tag (downcase tag)) 532 (setq tag (downcase tag))
533 (message (or (cdr (assoc tag sgml-tag-help)) 533 (message "%s"
534 (or (cdr (assoc tag sgml-tag-help))
534 (and (eq (aref tag 0) ?/) 535 (and (eq (aref tag 0) ?/)
535 (cdr (assoc (substring tag 1) sgml-tag-help))) 536 (cdr (assoc (substring tag 1) sgml-tag-help)))
536 "No description available"))) 537 "No description available")))