Function: opascal-next-visible-token

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

Signature

(opascal-next-visible-token TOKEN)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-next-visible-token (token)
  ;; Returns the first non-space token after the specified token.
  (let (next-token)
    (while (progn
             (setq next-token (opascal-next-token token))
             (memq (opascal-token-kind next-token) '(space newline))))
    next-token))