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."
(and (search-forward " " (line-end-position) 1)
(progn (skip-chars-forward " " (line-end-position))
(null (eolp)))
(if (and fill-nobreak-predicate
(run-hook-with-args-until-success
'fill-nobreak-predicate))
(longlines-find-break-forward)
t)))