Function: math-define-setf-list
math-define-setf-list is a byte-compiled function defined in
calc-prog.el.gz.
Signature
(math-define-setf-list BODY)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun math-define-setf-list (body)
(and body
(cons (math-define-setf (nth 0 body) (nth 1 body))
(math-define-setf-list (cdr (cdr body))))))