]> git.eshelyaron.com Git - emacs.git/commitdiff
(maphash, map-char-table): Use
authorDave Love <fx@gnu.org>
Tue, 19 Nov 2002 18:02:07 +0000 (18:02 +0000)
committerDave Love <fx@gnu.org>
Tue, 19 Nov 2002 18:02:07 +0000 (18:02 +0000)
byte-compile-funarg.

lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index 917c01701fdcc4a0202b56f476a8ce1348392237..48aa66b4d4d989e1937d36ed42fbc16529ac5a37 100644 (file)
@@ -1,3 +1,11 @@
+2002-11-19  Dave Love  <fx@gnu.org>
+
+       * emacs-lisp/bytecomp.el (maphash, map-char-table): Use
+       byte-compile-funarg.
+
+       * emacs-lisp/byte-opt.el (side-effect-free-fns): Several
+       additions.
+
 2002-11-19   Markus Rost  <rost@math.ohio-state.edu>
 
        * progmodes/vhdl-mode.el (defgroup vhdl-related): Declare the
index 81ef7b6e8776c528ffa58b4d7d121b3c5cb3cb34..561b85888ef3effd48cc631a5b1e049ce4190aba 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.116 $")
+(defconst byte-compile-version "$Revision: 2.117 $")
 
 ;; This file is part of GNU Emacs.
 
@@ -3186,6 +3186,8 @@ If FORM is a lambda or a macro, byte-compile it as a function."
 (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 maphash byte-compile-funarg)
+(byte-defop-compiler-1 map-char-table byte-compile-funarg)
 (byte-defop-compiler-1 sort byte-compile-funarg-2)
 (byte-defop-compiler-1 let)
 (byte-defop-compiler-1 let*)