Function: wisent-item-to-string
wisent-item-to-string is a byte-compiled function defined in
wisent.el.gz.
Signature
(wisent-item-to-string ITEM)
Documentation
Return a printed representation of ITEM.
ITEM can be a nonterminal or terminal symbol, or a character literal.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/wisent/wisent.el.gz
(defsubst wisent-item-to-string (item)
"Return a printed representation of ITEM.
ITEM can be a nonterminal or terminal symbol, or a character literal."
(if (characterp item)
(or (cdr (assq item wisent-escape-sequence-strings))
(format "'%c'" item))
(symbol-name item)))