Function: dom-tag

dom-tag is a byte-compiled function defined in dom.el.gz.

Signature

(dom-tag NODE)

Documentation

Return the NODE tag.

Source Code

;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defsubst dom-tag (node)
  "Return the NODE tag."
  ;; Called on a list of nodes.  Use the first.
  (car (if (consp (car node)) (car node) node)))