]> git.eshelyaron.com Git - emacs.git/commitdiff
(cl-old-mapc): Removed; don't defalias mapc.
authorGerd Moellmann <gerd@gnu.org>
Wed, 5 Jul 2000 17:29:40 +0000 (17:29 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 5 Jul 2000 17:29:40 +0000 (17:29 +0000)
(cl-mapc): Use mapc instead of cl-old-mapc.

lisp/emacs-lisp/cl-extra.el

index 79b6306bfc5390e4c05226518d837aecb1f6b7e1..1784d65a9b65560ef4af09b8917e484d913b7af0 100644 (file)
@@ -152,15 +152,12 @@ the elements themselves."
        (setq cl-list (cdr cl-list)))
       (nreverse cl-res))))
 
-(defvar cl-old-mapc (prog1 (symbol-function 'mapc)
-                     (defalias 'mapc 'cl-mapc)))
-
 (defun cl-mapc (cl-func cl-seq &rest cl-rest)
   "Like `mapcar', but does not accumulate values returned by the function."
   (if cl-rest
       (progn (apply 'map nil cl-func cl-seq cl-rest)
             cl-seq)
-    (funcall cl-old-mapc cl-func cl-seq)))
+    (mapc cl-func cl-seq)))
 
 (defun mapl (cl-func cl-list &rest cl-rest)
   "Like `maplist', but does not accumulate values returned by the function."