Function: search-forward-lax-whitespace
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
(search-forward-lax-whitespace STRING &optional BOUND NOERROR COUNT)
Documentation
Search forward for STRING, matching a sequence of whitespace chars.
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
;; Search with lax whitespace
(defun search-forward-lax-whitespace (string &optional bound noerror count)
"Search forward for STRING, matching a sequence of whitespace chars."
(let ((search-spaces-regexp search-whitespace-regexp))
(re-search-forward (regexp-quote string) bound noerror count)))