]> git.eshelyaron.com Git - emacs.git/commitdiff
(sgml-tag-help): Pass proper format string to message.
authorKarl Heuer <kwzh@gnu.org>
Thu, 25 Jan 1996 00:57:01 +0000 (00:57 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 25 Jan 1996 00:57:01 +0000 (00:57 +0000)
lisp/textmodes/sgml-mode.el

index f146e21a4b360136f9f20e2b507d1a1676a71167..b71e0a2f1290fdb6135a7a7b750ec30ac5bacdd3 100644 (file)
@@ -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")))