From: Colin Walters Date: Mon, 18 Feb 2002 20:05:49 +0000 (+0000) Subject: (calc-with-default-simplification): Use &rest for body. X-Git-Tag: ttn-vms-21-2-B4~16583 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=061b2cc1e5fc09c512e144a9f9b1d33f0457df28;p=emacs.git (calc-with-default-simplification): Use &rest for body. --- diff --git a/lisp/calc/calc-macs.el b/lisp/calc/calc-macs.el index 08d0247b30b..7d4cd14e76e 100644 --- a/lisp/calc/calc-macs.el +++ b/lisp/calc/calc-macs.el @@ -51,7 +51,7 @@ `(if (eq calc-display-working-message 'lots) (math-do-working ,msg ,arg))) -(defmacro calc-with-default-simplification (body) +(defmacro calc-with-default-simplification (&rest body) `(let ((calc-simplify-mode (and (not (memq calc-simplify-mode '(none num))) calc-simplify-mode))) ,@body))