aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 a1f50816519..5dcc5365d10 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."
191 math-eval-rules-cache-tag t 191 math-eval-rules-cache-tag t
192 math-format-date-cache nil 192 math-format-date-cache nil
193 math-holidays-cache-tag t) 193 math-holidays-cache-tag t)
194 (mapcar (function (lambda (x) (set x -100))) math-cache-list) 194 (mapc (function (lambda (x) (set x -100))) math-cache-list)
195 (unless inhibit-msg 195 (unless inhibit-msg
196 (message "All internal calculator caches have been reset")))) 196 (message "All internal calculator caches have been reset"))))
197 197