1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-11 16:08:13 +00:00

(calc-with-default-simplification): Use &rest for body.

This commit is contained in:
Colin Walters 2002-02-18 20:05:49 +00:00
parent 96cc56b5eb
commit 061b2cc1e5

View File

@ -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))