Function: wisent-token-to-string

wisent-token-to-string is a byte-compiled function defined in wisent.el.gz.

Signature

(wisent-token-to-string TOKEN)

Documentation

Return a printed representation of lexical token TOKEN.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/wisent/wisent.el.gz
(defsubst wisent-token-to-string (token)
  "Return a printed representation of lexical token TOKEN."
  (format "%s%s(%S)" (wisent-item-to-string (car token))
          (if (nth 2 token) (format "@%s" (nth 2 token)) "")
          (nth 1 token)))