Function: sgml-empty-tag-p
sgml-empty-tag-p is a byte-compiled function defined in
sgml-mode.el.gz.
Signature
(sgml-empty-tag-p TAG-NAME)
Documentation
Return non-nil if TAG-NAME is an implicitly empty tag.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defun sgml-empty-tag-p (tag-name)
"Return non-nil if TAG-NAME is an implicitly empty tag."
(and (not sgml-xml-mode)
(assoc-string tag-name sgml-empty-tags 'ignore-case)))