Function: math-expr-subst

math-expr-subst is an autoloaded and byte-compiled function defined in calc-alg.el.gz.

Signature

(math-expr-subst EXPR OLD NEW)

Aliases

calcFunc-subst

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-alg.el.gz
(defun math-expr-subst (expr old new)
  (let ((math-expr-subst-old old)
        (math-expr-subst-new new))
    (math-expr-subst-rec expr)))