Function: org-mark-jump-unhide

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

Signature

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

Documentation

Make the point visible with org-show-context after jumping to the mark.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-compat.el.gz
;;;; Simple

(defun org-mark-jump-unhide (&rest _)
  "Make the point visible with `org-show-context' after jumping to the mark."
  (when (and (derived-mode-p 'org-mode)
	     (org-invisible-p))
    (org-fold-show-context 'mark-goto)))