Function: math-rwcomp-copy-instr
math-rwcomp-copy-instr is a byte-compiled function defined in
calc-rewr.el.gz.
Signature
(math-rwcomp-copy-instr REG1 REG2 NEG)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-rewr.el.gz
(defun math-rwcomp-copy-instr (reg1 reg2 neg)
(if (eq (eq (nth 2 (math-rwcomp-reg-entry reg1))
(nth 2 (math-rwcomp-reg-entry reg2)))
neg)
(math-rwcomp-instr 'copy-neg reg1 reg2)
(or (eq reg1 reg2)
(math-rwcomp-instr 'copy reg1 reg2))))