Function: semantic-parse-region-texinfo-mode

semantic-parse-region-texinfo-mode is a byte-compiled function defined in texi.el.gz.

Signature

(semantic-parse-region-texinfo-mode &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)
Override semantic-parse-region in texinfo-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/texi.el.gz
;;; Code:
(define-mode-local-override semantic-parse-region texinfo-mode (&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)"
  (mapcar #'semantic-texi-expand-tag
          (semantic-texi-parse-headings)))