Function: semantic-grammar--template-expand
semantic-grammar--template-expand is a byte-compiled function defined
in grammar.el.gz.
Signature
(semantic-grammar--template-expand TEMPLATE ENV)
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/grammar.el.gz
(defun semantic-grammar--template-expand (template env)
(mapconcat (lambda (S)
(if (stringp S) S
(let ((x (assq S env)))
(cond
(x (cdr x))
((symbolp S) (symbol-value S))))))
template))