Function: semantic-c-template-string-body

semantic-c-template-string-body is a byte-compiled function defined in c.el.gz.

Signature

(semantic-c-template-string-body TEMPLATESPEC)

Documentation

Convert TEMPLATESPEC into a string.

This might be a string, or a list of tokens.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/c.el.gz
(defun semantic-c-template-string-body (templatespec)
  "Convert TEMPLATESPEC into a string.
This might be a string, or a list of tokens."
  (cond ((stringp templatespec)
	 templatespec)
	((semantic-tag-p templatespec)
	 (semantic-format-tag-abbreviate templatespec))
	((listp templatespec)
	 (mapconcat #'semantic-format-tag-abbreviate templatespec ", "))))