Function: longlines-find-break-forward
longlines-find-break-forward is a byte-compiled function defined in
longlines.el.gz.
Signature
(longlines-find-break-forward)
Documentation
Move point forward to the first available breakpoint and return t.
If no break point is found, return nil.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/longlines.el.gz
(defun longlines-find-break-forward ()
"Move point forward to the first available breakpoint and return t.
If no break point is found, return nil."
(let ((break-re (format "[%s]" longlines-break-chars)))
(and (re-search-forward break-re (line-end-position) t 1)
(progn
(skip-chars-forward longlines-break-chars (line-end-position))
(null (eolp)))
(if (and fill-nobreak-predicate
(run-hook-with-args-until-success 'fill-nobreak-predicate))
(longlines-find-break-forward)
t))))