Function: sgml-unclosed-tag-p

sgml-unclosed-tag-p is a byte-compiled function defined in sgml-mode.el.gz.

Signature

(sgml-unclosed-tag-p TAG-NAME)

Documentation

Return non-nil if TAG-NAME is a tag for which an end-tag is optional.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defun sgml-unclosed-tag-p (tag-name)
  "Return non-nil if TAG-NAME is a tag for which an end-tag is optional."
  (and (not sgml-xml-mode)
       (assoc-string tag-name sgml-unclosed-tags 'ignore-case)))