Function: org-bookmark-jump-unhide

org-bookmark-jump-unhide is a byte-compiled function defined in org-compat.el.gz.

Signature

(org-bookmark-jump-unhide &rest _)

Documentation

Unhide the current position, to show the bookmark location.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-compat.el.gz
;;;; 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)))