Function: org-capture-kill
org-capture-kill is an interactive and byte-compiled function defined
in org-capture.el.gz.
Signature
(org-capture-kill)
Documentation
Abort the current capture process.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-capture.el.gz
(defun org-capture-kill ()
"Abort the current capture process."
(interactive)
;; FIXME: This does not do the right thing, we need to remove the
;; new stuff by hand it is easy: undo, then kill the buffer
(let ((org-note-abort t)
(org-capture-before-finalize-hook nil))
(org-capture-finalize)))