Function: opascal-explicit-token-at
opascal-explicit-token-at is a byte-compiled function defined in
opascal.el.gz.
Signature
(opascal-explicit-token-at P TOKEN-STRING KIND)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-explicit-token-at (p token-string kind)
;; If point p is anywhere in the token string then returns the resulting
;; token.
(let ((token (opascal-charset-token-at p token-string kind)))
(when (and token (string= token-string (opascal-token-string token)))
token)))