Function: quick-calc

quick-calc is an autoloaded, interactive and byte-compiled function defined in calc.el.gz.

Signature

(quick-calc &optional INSERT)

Documentation

Do a quick calculation in the minibuffer without invoking full Calculator.

With prefix argument INSERT, insert the result in the current buffer. Otherwise, the result is copied into the kill ring.

Probably introduced at or before Emacs version 25.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
;;;###autoload
(defun quick-calc (&optional insert)
  "Do a quick calculation in the minibuffer without invoking full Calculator.
With prefix argument INSERT, insert the result in the current
buffer.  Otherwise, the result is copied into the kill ring."
  (interactive "P")
  (calc-do-quick-calc insert))