Function: calc-edit-cancel
calc-edit-cancel is an autoloaded, interactive and byte-compiled
function defined in calc-yank.el.gz.
Signature
(calc-edit-cancel)
Documentation
Cancel calc-edit mode. Ignore the Calc Edit buffer and don't change stack.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-yank.el.gz
(defun calc-edit-cancel ()
"Cancel calc-edit mode. Ignore the Calc Edit buffer and don't change stack."
(interactive)
(let ((calc-edit-handler nil))
(calc-edit-finish))
(message "(Canceled)"))