Function: opascal-char-token-at

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

Signature

(opascal-char-token-at P CHAR KIND)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defsubst opascal-char-token-at (p char kind)
  ;; Returns the token at the point p that describes the specified character.
  ;; If not actually over such a character, nil is returned.
  (when (eq char (char-after p))
    (opascal-token-of kind p (1+ p))))