diff options
author | Dave Love <fx@gnu.org> | 2002-11-19 18:02:07 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2002-11-19 18:02:07 +0000 |
commit | def9389aaa944e1b3b7fe41868af7d4f7b7c23e2 (patch) | |
tree | 88d0d309d68c54207bffd572c67db8c1648d06ac /lisp/emacs-lisp | |
parent | d9881cf17f347016693f3f866578f685678c58f6 (diff) | |
download | emacs-def9389aaa944e1b3b7fe41868af7d4f7b7c23e2.tar.gz emacs-def9389aaa944e1b3b7fe41868af7d4f7b7c23e2.tar.bz2 emacs-def9389aaa944e1b3b7fe41868af7d4f7b7c23e2.zip |
(maphash, map-char-table): Use
byte-compile-funarg.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 81ef7b6e877..561b85888ef 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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*) |