Function: org--line-empty-p
org--line-empty-p is a byte-compiled function defined in org-macs.el.
Signature
(org--line-empty-p N)
Documentation
Is the Nth next line empty?
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org--line-empty-p (n)
"Is the Nth next line empty?"
(and (not (bobp))
(save-excursion
(forward-line n)
(skip-chars-forward " \t")
(eolp))))