From f68f40e039931dc9c4ab223f7f8880cd3abdb629 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 25 Jan 1996 00:57:01 +0000 Subject: [PATCH] (sgml-tag-help): Pass proper format string to message. --- lisp/textmodes/sgml-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"))) -- 2.39.2