Function: org-goto-quit

org-goto-quit is an interactive and byte-compiled function defined in org-goto.el.gz.

Signature

(org-goto-quit)

Documentation

Finish org-goto without cursor motion.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-goto.el.gz
(defun org-goto-quit ()
  "Finish `org-goto' without cursor motion."
  (interactive)
  (setq org-goto-selected-point nil)
  (setq org-goto-exit-command 'quit)
  (throw 'exit nil))