Function: re-search-forward-lax-whitespace

re-search-forward-lax-whitespace is a byte-compiled function defined in isearch.el.gz.

This function is obsolete since 25.1; instead, use (let ((search-spaces-regexp search-whitespace-regexp)) (re-search-... ...))

Signature

(re-search-forward-lax-whitespace REGEXP &optional BOUND NOERROR COUNT)

Documentation

Search forward for REGEXP, matching a sequence of whitespace chars.

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun re-search-forward-lax-whitespace (regexp &optional bound noerror count)
  "Search forward for REGEXP, matching a sequence of whitespace chars."
  (let ((search-spaces-regexp search-whitespace-regexp))
    (re-search-forward regexp bound noerror count)))