Function: opascal-charset-token-at
opascal-charset-token-at is a byte-compiled function defined in
opascal.el.gz.
Signature
(opascal-charset-token-at P CHARSET KIND)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-charset-token-at (p charset kind)
;; Returns the token surrounding point p that contains only members of the
;; character set.
(let ((currp (point))
(end nil)
(token nil))
(goto-char p)
(when (> (skip-chars-forward charset) 0)
(setq end (point))
(goto-char (1+ p))
(skip-chars-backward charset)
(setq token (opascal-token-of kind (point) end)))
(goto-char currp)
token))