diff options
author | Colin Walters <walters@gnu.org> | 2001-11-21 06:24:04 +0000 |
---|---|---|
committer | Colin Walters <walters@gnu.org> | 2001-11-21 06:24:04 +0000 |
commit | e7905671636b89df3abd3d46b94d1f0ceb6f6255 (patch) | |
tree | ab8a7e35e1b3c116ba3be26388f3ce3d7c7b7405 /lisp/calc/calc-macs.el | |
parent | e95768c50273519a8b07a39217f98969fe9ffe41 (diff) | |
download | emacs-e7905671636b89df3abd3d46b94d1f0ceb6f6255.tar.gz |
(calc-slow-wrapper): Move (point) call outside of (function ...)
wrapper.
Diffstat (limited to 'lisp/calc/calc-macs.el')
-rw-r--r-- | lisp/calc/calc-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-macs.el b/lisp/calc/calc-macs.el index 0aee9556aef..313331ba820 100644 --- a/lisp/calc/calc-macs.el +++ b/lisp/calc/calc-macs.el @@ -36,7 +36,7 @@ (defmacro calc-slow-wrapper (&rest body) `(calc-do - (function (lambda () ,@body) (point)))) + (function (lambda () ,@body)) (point))) (defmacro math-showing-full-precision (form) `(let ((calc-float-format calc-full-float-format)) |