Function: semantic-texi-parse-region
semantic-texi-parse-region is a byte-compiled function defined in
texi.el.gz.
Signature
(semantic-texi-parse-region &rest IGNORE)
Documentation
Parse the current texinfo buffer for semantic tags.
IGNORE any arguments, always parse the whole buffer.
Each tag returned is of the form:
("NAME" section (:members CHILDREN))
or
("NAME" def)
It is an override of semantic-parse-region and must be installed by the
function semantic-install-function-overrides.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/texi.el.gz
;;; Code:
(defun semantic-texi-parse-region (&rest _ignore)
"Parse the current texinfo buffer for semantic tags.
IGNORE any arguments, always parse the whole buffer.
Each tag returned is of the form:
(\"NAME\" section (:members CHILDREN))
or
(\"NAME\" def)
It is an override of `semantic-parse-region' and must be installed by the
function `semantic-install-function-overrides'."
(mapcar #'semantic-texi-expand-tag
(semantic-texi-parse-headings)))