Function: vera-re-search-forward

vera-re-search-forward is a byte-compiled function defined in vera-mode.el.gz.

Signature

(vera-re-search-forward REGEXP &optional BOUND NOERROR)

Documentation

Like re-search-forward, but skips over matches in literals.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vera-mode.el.gz
(defsubst vera-re-search-forward (regexp &optional bound noerror)
  "Like `re-search-forward', but skips over matches in literals."
  (let (ret)
    (while (and (setq ret (re-search-forward regexp bound noerror))
                (vera-skip-forward-literal)
                (if bound (< (point) bound) t)))
    ret))