Function: calc-missing-key

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

Signature

(calc-missing-key N)

Documentation

This is a placeholder for a command which needs to be loaded from calc-ext.

When this key is used, calc-ext (the Calculator extensions module) will be loaded and the keystroke automatically re-typed.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-misc.el.gz
;;;###autoload
(defun calc-missing-key (n)
  "This is a placeholder for a command which needs to be loaded from calc-ext.
When this key is used, calc-ext (the Calculator extensions module) will be
loaded and the keystroke automatically re-typed."
  (interactive "P")
  (require 'calc-ext)
  (if (keymapp (key-binding (char-to-string last-command-event)))
      (message "%s%c-" (calc-num-prefix-name n) last-command-event))
  (calc-unread-command)
  (setq prefix-arg n))