Function: org-in-invisibility-spec-p
org-in-invisibility-spec-p is a byte-compiled function defined in
org-compat.el.
Signature
(org-in-invisibility-spec-p ARG)
Documentation
Is ARG a member of buffer-invisibility-spec?
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
;;; Invisibility compatibility
(defun org-in-invisibility-spec-p (arg)
"Is ARG a member of `buffer-invisibility-spec'?"
(when (consp buffer-invisibility-spec)
(member arg buffer-invisibility-spec)))