Mercurial > emacs
changeset 43402:b7527fba7b15
(calc-with-default-simplification): Use &rest for body.
author | Colin Walters <walters@gnu.org> |
---|---|
date | Mon, 18 Feb 2002 20:05:49 +0000 |
parents | bec15ab7a002 |
children | fef73ecd984e |
files | lisp/calc/calc-macs.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calc/calc-macs.el Mon Feb 18 20:05:23 2002 +0000 +++ b/lisp/calc/calc-macs.el Mon Feb 18 20:05:49 2002 +0000 @@ -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))