Function: math-define-function-body
math-define-function-body is a byte-compiled function defined in
calc-prog.el.gz.
Signature
(math-define-function-body BODY ENV)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun math-define-function-body (body env)
(let ((body (math-define-body body env)))
(if (math-body-refers-to body 'math-return)
`((catch 'math-return ,@body))
body)))