Function: math-lang-switch-args
math-lang-switch-args is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-lang-switch-args F VAL)
Documentation
Read the arguments to a Calc function in reverse order.
This is used for various language modes which have functions in reverse order to Calc's.
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-lang-switch-args (f _val)
"Read the arguments to a Calc function in reverse order.
This is used for various language modes which have functions in reverse
order to Calc's."
(let ((args (math-read-expr-list)))
(math-read-token)
(list (nth 2 f)
(nth 1 args)
(nth 0 args))))