Function: vera-forward-syntactic-ws
vera-forward-syntactic-ws is a byte-compiled function defined in
vera-mode.el.gz.
Signature
(vera-forward-syntactic-ws &optional LIM SKIP-DIRECTIVE)
Documentation
Forward skip of syntactic whitespace.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vera-mode.el.gz
(defun vera-forward-syntactic-ws (&optional lim skip-directive)
"Forward skip of syntactic whitespace."
(save-restriction
(let* ((lim (or lim (point-max)))
(here lim)
(hugenum (point-max)))
(narrow-to-region (point) lim)
(while (/= here (point))
(setq here (point))
(forward-comment hugenum)
(when (and skip-directive (looking-at "^\\s-*#"))
(end-of-line))))))