Function: org-fill-line-break-nobreak-p

org-fill-line-break-nobreak-p is a byte-compiled function defined in org.el.gz.

Signature

(org-fill-line-break-nobreak-p)

Documentation

Non-nil when a new line at point would create an Org line break.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-fill-line-break-nobreak-p ()
  "Non-nil when a new line at point would create an Org line break."
  (save-excursion
    (skip-chars-backward " \t")
    (skip-chars-backward "\\\\")
    (looking-at "\\\\\\\\\\($\\|[^\\]\\)")))