Function: org--line-fully-invisible-p

org--line-fully-invisible-p is a byte-compiled function defined in org.el.gz.

Signature

(org--line-fully-invisible-p)

Documentation

Return non-nil if the current line is fully invisible.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org--line-fully-invisible-p ()
  "Return non-nil if the current line is fully invisible."
  (let ((line-beg (line-beginning-position))
	(line-pos (1- (line-end-position)))
	(is-invisible t))
    (while (and (< line-beg line-pos) is-invisible)
      (setq is-invisible (org-invisible-p line-pos))
      (setq line-pos (1- line-pos)))
    is-invisible))