Function: bovine-grammar-EXPAND
bovine-grammar-EXPAND is a byte-compiled function defined in
grammar.el.gz.
Signature
(bovine-grammar-EXPAND BOUNDS NONTERM)
Documentation
Expand call to EXPAND grammar macro.
Return the form to parse from within a nonterminal 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-EXPAND (bounds nonterm)
"Expand call to EXPAND grammar macro.
Return the form to parse from within a nonterminal between BOUNDS.
NONTERM is the nonterminal symbol to start with."
`(semantic-bovinate-from-nonterminal
(car ,bounds) (cdr ,bounds) ',nonterm))