Function: org-bookmark-jump-unhide
org-bookmark-jump-unhide is a byte-compiled function defined in
org-compat.el.
Signature
(org-bookmark-jump-unhide &rest _)
Documentation
Unhide the current position, to show the bookmark location.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
;;;; Bookmark
(defun org-bookmark-jump-unhide (&rest _)
"Unhide the current position, to show the bookmark location."
(and (derived-mode-p 'org-mode)
(or (org-invisible-p)
(save-excursion (goto-char (max (point-min) (1- (point))))
(org-invisible-p)))
(org-fold-show-context 'bookmark-jump)))