Function: org--line-empty-p

org--line-empty-p is a byte-compiled function defined in org-macs.el.gz.

Signature

(org--line-empty-p N)

Documentation

Is the Nth next line empty?

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(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))))