Function: math-multi-subst
math-multi-subst is an autoloaded and byte-compiled function defined
in calc-map.el.gz.
Signature
(math-multi-subst EXPR OLDS NEWS)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-map.el.gz
(defun math-multi-subst (expr olds news)
(let ((math-ms-args nil)
math-ms-temp)
(while (and olds news)
(setq math-ms-args (cons (cons (car olds) (car news)) math-ms-args)
olds (cdr olds)
news (cdr news)))
(math-multi-subst-rec expr)))