Function: semantic-texi-new-section-tag

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

Signature

(semantic-texi-new-section-tag NAME MEMBERS START END)

Documentation

Create a semantic tag of class section.

NAME is the name of this section. MEMBERS is a list of semantic tags representing the elements that make up this section. START and END define the location of data described by the tag.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/texi.el.gz
(defsubst semantic-texi-new-section-tag (name members start end)
  "Create a semantic tag of class section.
NAME is the name of this section.
MEMBERS is a list of semantic tags representing the elements that make
up this section.
START and END define the location of data described by the tag."
  (append (semantic-tag name 'section :members members)
          (list start end)))