Function: org-fill-n-macro-as-item-nobreak-p

org-fill-n-macro-as-item-nobreak-p is a byte-compiled function defined in org.el.gz.

Signature

(org-fill-n-macro-as-item-nobreak-p)

Documentation

Non-nil when a new line at point would create a new list.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-fill-n-macro-as-item-nobreak-p ()
  "Non-nil when a new line at point would create a new list."
  ;; During export, a "n" macro followed by a dot or a closing
  ;; parenthesis can end up being parsed as a new list item.
  (looking-at-p "[ \t]*{{{n\\(?:([^\n)]*)\\)?}}}[.)]\\(?:$\\| \\)"))