Function: calculator-repR
calculator-repR is a byte-compiled function defined in
calculator.el.gz.
Signature
(calculator-repR X)
Documentation
Repeat the last binary operation with its second argument and X.
To use this, apply a binary operator (evaluate it), then call this.
Source Code
;; Defined in /usr/src/emacs/lisp/calculator.el.gz
(defun calculator-repR (x)
"Repeat the last binary operation with its second argument and X.
To use this, apply a binary operator (evaluate it), then call this."
(if calculator-last-opXY
;; avoid rebinding calculator-last-opXY
(let ((calculator-last-opXY calculator-last-opXY))
(calculator-funcall
(car calculator-last-opXY) x (nth 2 calculator-last-opXY)))
x))