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? Counts the current line as N = 1 and the previous line as N = 0; see beginning-of-line.

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?
Counts the current line as N = 1 and the previous line as N = 0;
see `beginning-of-line'."
  (and (not (bobp))
       (save-excursion
	 (beginning-of-line n)
	 (looking-at-p "[ \t]*$"))))