Function: opascal-token-string

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

Signature

(opascal-token-string TOKEN)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-token-string (token)
  ;; Returns the string image of the token.
  (if token
      (opascal-string-of (opascal-token-start token) (opascal-token-end token))
    ""))