Function: semantic-grammar-item-text

semantic-grammar-item-text is a byte-compiled function defined in grammar.el.gz.

Signature

(semantic-grammar-item-text ITEM)

Documentation

Return the readable string form of ITEM.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/grammar.el.gz
(defsubst semantic-grammar-item-text (item)
  "Return the readable string form of ITEM."
  (if (string-match semantic-grammar-lex-c-char-re item)
      (concat "?" (substring item 1 -1))
    item))