Function: calculator-save-and-quit

calculator-save-and-quit is an interactive and byte-compiled function defined in calculator.el.gz.

Signature

(calculator-save-and-quit)

Documentation

Quit the calculator, saving the result on the kill-ring.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calculator.el.gz
(defun calculator-save-and-quit ()
  "Quit the calculator, saving the result on the `kill-ring'."
  (interactive)
  (calculator-enter)
  (calculator-copy)
  (calculator-quit))