Function: semantic-grammar-item-value

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

Signature

(semantic-grammar-item-value ITEM)

Documentation

Return symbol or character value of ITEM string.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/grammar.el.gz
(defsubst semantic-grammar-item-value (item)
  "Return symbol or character value of ITEM string."
  (if (string-match semantic-grammar-lex-c-char-re item)
      (read (concat "?" (substring item 1 -1)))
    (intern item)))