Function: org-subtree-end-visible-p
org-subtree-end-visible-p is a byte-compiled function defined in
org.el.gz.
Signature
(org-subtree-end-visible-p)
Documentation
Is the end of the current subtree visible?
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-subtree-end-visible-p ()
"Is the end of the current subtree visible?"
(pos-visible-in-window-p
(save-excursion (org-end-of-subtree t) (point))))