Function: org-invisible-p2

org-invisible-p2 is a byte-compiled function defined in org-macs.el.

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 ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(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)))