Function: org-invisible-p2
org-invisible-p2 is a byte-compiled function defined in
org-macs.el.gz.
Signature
(org-invisible-p2)
Documentation
Check if point is at a character currently not visible.
If the point is at EOL (and not at the beginning of a buffer too), move it back by one char before doing this check.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-invisible-p2 ()
"Check if point is at a character currently not visible.
If the point is at EOL (and not at the beginning of a buffer too),
move it back by one char before doing this check."
(save-excursion
(when (and (eolp) (not (bobp)))
(backward-char 1))
(org-invisible-p)))