Function: semantic-texi-expand-tag

semantic-texi-expand-tag is a byte-compiled function defined in texi.el.gz.

Signature

(semantic-texi-expand-tag TAG)

Documentation

Expand the texinfo tag TAG.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/texi.el.gz
(defun semantic-texi-expand-tag (tag)
  "Expand the texinfo tag TAG."
  (let ((chil (semantic-tag-components tag)))
    (if chil
        (semantic-tag-put-attribute
         tag :members (mapcar #'semantic-texi-expand-tag chil)))
    (car (semantic--tag-expand tag))))