Function: calc-keypad

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

Signature

(calc-keypad &optional INTERACTIVE)

Documentation

Invoke the Calculator in "visual keypad" mode.

This is most useful in the X window system. In this mode, click on the Calc "buttons" using the left mouse button. Or, position the cursor manually and do M-x calc-keypad-press (calc-keypad-press).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
;;;###autoload
(defun calc-keypad (&optional interactive)
  "Invoke the Calculator in \"visual keypad\" mode.
This is most useful in the X window system.
In this mode, click on the Calc \"buttons\" using the left mouse button.
Or, position the cursor manually and do \\[calc-keypad-press]."
  (interactive "p")
  (require 'calc-ext)
  (calc-do-keypad calc-full-mode interactive))