Function: opascal-in-token

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

Signature

(opascal-in-token P TOKEN)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-in-token (p token)
  ;; Returns true if the point p is within the token's start/end points.
  (and (<= (opascal-token-start token) p) (< p (opascal-token-end token))))