Function: calc-fancy-prefix-other-key

calc-fancy-prefix-other-key is an interactive and byte-compiled function defined in calc-ext.el.gz.

Signature

(calc-fancy-prefix-other-key ARG)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
(defun calc-fancy-prefix-other-key (arg)
  (interactive "P")
  (if (and
       (not (eq last-command-event 'tab))
       (not (eq last-command-event 'M-tab))
       (or (not (integerp last-command-event))
           (and (>= last-command-event 0) (< last-command-event ? )
                (not (eq last-command-event meta-prefix-char)))))
     (calc-wrapper))  ; clear flags if not a Calc command.
  (setq prefix-arg arg)
  (calc-unread-command)
  (setq overriding-terminal-local-map nil))