Function: math-define-lambda

math-define-lambda is a byte-compiled function defined in calc-prog.el.gz.

Signature

(math-define-lambda EXP EXP-ENV)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun math-define-lambda (exp exp-env)
  (nconc (list (nth 0 exp)   ; 'lambda
	       (nth 1 exp))  ; arg list
	 (math-define-function-body (cdr (cdr exp))
				    (append (nth 1 exp) exp-env))))