Function: org-list-search-forward
org-list-search-forward is a byte-compiled function defined in
org-list.el.gz.
Signature
(org-list-search-forward REGEXP &optional BOUND NOERROR)
Documentation
Like re-search-forward but stop only where lists are recognized.
Arguments REGEXP, BOUND and NOERROR are similar to those used in
re-search-forward.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-list-search-forward (regexp &optional bound noerror)
"Like `re-search-forward' but stop only where lists are recognized.
Arguments REGEXP, BOUND and NOERROR are similar to those used in
`re-search-forward'."
(org-list-search-generic #'re-search-forward
regexp (or bound (point-max)) noerror))