]> git.eshelyaron.com Git - emacs.git/commitdiff
(mapc): Use byte-compile-funarg.
authorDave Love <fx@gnu.org>
Sun, 27 Aug 2000 21:55:00 +0000 (21:55 +0000)
committerDave Love <fx@gnu.org>
Sun, 27 Aug 2000 21:55:00 +0000 (21:55 +0000)
lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index a38bfd37246ae527e45da914a611c9404247a384..56c4d3bf2bf6781e3f803c146e96256b8976cf2f 100644 (file)
@@ -1,3 +1,7 @@
+2000-08-27  Dave Love  <fx@gnu.org>
+
+       * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
+
 2000-08-27  Miles Bader  <miles@gnu.org>
 
        * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
index dbcbe5c8c77b5e6c5debf878a641b5cb9b1d0f2c..bdcb17cfa7607122385b3d0ed7537531ebe03a60 100644 (file)
@@ -10,7 +10,7 @@
 
 ;;; This version incorporates changes up to version 2.10 of the
 ;;; Zawinski-Furuseth compiler.
-(defconst byte-compile-version "$Revision: 2.72 $")
+(defconst byte-compile-version "$Revision: 2.73 $")
 
 ;; This file is part of GNU Emacs.
 
@@ -2912,6 +2912,7 @@ If FORM is a lambda or a macro, byte-compile it as a function."
 (byte-defop-compiler-1 mapcar byte-compile-funarg)
 (byte-defop-compiler-1 mapatoms byte-compile-funarg)
 (byte-defop-compiler-1 mapconcat byte-compile-funarg)
+(byte-defop-compiler-1 mapc byte-compile-funarg)
 (byte-defop-compiler-1 sort byte-compile-funarg-2)
 (byte-defop-compiler-1 let)
 (byte-defop-compiler-1 let*)