Function: math-yacas-parse-Sum
math-yacas-parse-Sum is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-yacas-parse-Sum F VAL)
Documentation
Read in the arguments to "Sum" in Calc's Yacas mode.
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-yacas-parse-Sum (f _val)
"Read in the arguments to \"Sum\" in Calc's Yacas mode."
(let ((args (math-read-expr-list)))
(math-read-token)
(list (nth 2 f)
(nth 3 args)
(nth 0 args)
(nth 1 args)
(nth 2 args))))