Function: bovine-grammar-EXPANDFULL

bovine-grammar-EXPANDFULL is a byte-compiled function defined in grammar.el.gz.

Signature

(bovine-grammar-EXPANDFULL BOUNDS NONTERM)

Documentation

Expand call to EXPANDFULL grammar macro.

Return the form to recursively parse the area between BOUNDS. NONTERM is the nonterminal symbol to start with.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/grammar.el.gz
(defun bovine-grammar-EXPANDFULL (bounds nonterm)
  "Expand call to EXPANDFULL grammar macro.
Return the form to recursively parse the area between BOUNDS.
NONTERM is the nonterminal symbol to start with."
  `(semantic-parse-region
    (car ,bounds) (cdr ,bounds) ',nonterm 1))