aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2007-09-26 00:07:37 +0000
committerJuanma Barranquero <[email protected]>2007-09-26 00:07:37 +0000
commit4d2a9fe4a44aa3c718b6584910e51f30ad241002 (patch)
treea8ba4fb4377020b5e74f91ae6db5058464ba45eb
parent19449d1d81fbffc07321df1492b79e27b186ac8a (diff)
(calc-flush-caches): Use `mapc' rather than `mapcar'.
-rw-r--r--lisp/calc/calc-stuff.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-stuff.el b/lisp/calc/calc-stuff.el
index a1f5081651..5dcc5365d1 100644
--- a/lisp/calc/calc-stuff.el
+++ b/lisp/calc/calc-stuff.el
@@ -191,7 +191,7 @@ With a prefix, push that prefix as a number onto the stack."
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"))))