changeset 84890:bc733cde4fff

(calc-flush-caches): Use `mapc' rather than `mapcar'.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 26 Sep 2007 00:07:37 +0000
parents fa8470bb9f1a
children 1059e5620f1c
files lisp/calc/calc-stuff.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/calc/calc-stuff.el	Wed Sep 26 00:07:05 2007 +0000
+++ b/lisp/calc/calc-stuff.el	Wed Sep 26 00:07:37 2007 +0000
@@ -191,7 +191,7 @@
 	 math-eval-rules-cache-tag t
 	 math-format-date-cache nil
 	 math-holidays-cache-tag t)
-   (mapcar (function (lambda (x) (set x -100))) math-cache-list)
+   (mapc (function (lambda (x) (set x -100))) math-cache-list)
    (unless inhibit-msg
      (message "All internal calculator caches have been reset"))))