Function: math-maxima-parse-subst

math-maxima-parse-subst is a byte-compiled function defined in calc-lang.el.gz.

Signature

(math-maxima-parse-subst F VAL)

Documentation

Read in the arguments to "subst" in Calc's Maxima mode.

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-maxima-parse-subst (_f _val)
  "Read in the arguments to \"subst\" in Calc's Maxima mode."
  (let ((args (math-read-expr-list)))
    (math-read-token)
    (list 'calcFunc-subst
          (nth 1 args)
          (nth 2 args)
          (nth 0 args))))