Function: calc-keypad-left-click

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

Signature

(calc-keypad-left-click EVENT)

Documentation

Handle a left-button mouse click in Calc Keypad window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-keypd.el.gz
(defun calc-keypad-left-click (event)
  "Handle a left-button mouse click in Calc Keypad window."
  ;; FIXME: Why not use "@e" instead to select the buffer?
  (interactive "e")
  (with-current-buffer calc-keypad-buffer
    (goto-char (posn-point (event-start event)))
    (calc-keypad-press)))