From: Juanma Barranquero Date: Wed, 26 Sep 2007 00:07:37 +0000 (+0000) Subject: (calc-flush-caches): Use `mapc' rather than `mapcar'. X-Git-Tag: emacs-pretest-23.0.90~10652 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4d2a9fe4a44aa3c718b6584910e51f30ad241002;p=emacs.git (calc-flush-caches): Use `mapc' rather than `mapcar'. --- 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." 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"))))