diff options
| author | Dave Love | 2002-11-19 18:02:07 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-19 18:02:07 +0000 |
| commit | def9389aaa944e1b3b7fe41868af7d4f7b7c23e2 (patch) | |
| tree | 88d0d309d68c54207bffd572c67db8c1648d06ac | |
| parent | d9881cf17f347016693f3f866578f685678c58f6 (diff) | |
| download | emacs-def9389aaa944e1b3b7fe41868af7d4f7b7c23e2.tar.gz emacs-def9389aaa944e1b3b7fe41868af7d4f7b7c23e2.zip | |
(maphash, map-char-table): Use
byte-compile-funarg.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 917c01701fd..48aa66b4d4d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2002-11-19 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (maphash, map-char-table): Use | ||
| 4 | byte-compile-funarg. | ||
| 5 | |||
| 6 | * emacs-lisp/byte-opt.el (side-effect-free-fns): Several | ||
| 7 | additions. | ||
| 8 | |||
| 1 | 2002-11-19 Markus Rost <rost@math.ohio-state.edu> | 9 | 2002-11-19 Markus Rost <rost@math.ohio-state.edu> |
| 2 | 10 | ||
| 3 | * progmodes/vhdl-mode.el (defgroup vhdl-related): Declare the | 11 | * progmodes/vhdl-mode.el (defgroup vhdl-related): Declare the |
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 @@ | |||
| 10 | 10 | ||
| 11 | ;;; This version incorporates changes up to version 2.10 of the | 11 | ;;; This version incorporates changes up to version 2.10 of the |
| 12 | ;;; Zawinski-Furuseth compiler. | 12 | ;;; Zawinski-Furuseth compiler. |
| 13 | (defconst byte-compile-version "$Revision: 2.116 $") | 13 | (defconst byte-compile-version "$Revision: 2.117 $") |
| 14 | 14 | ||
| 15 | ;; This file is part of GNU Emacs. | 15 | ;; This file is part of GNU Emacs. |
| 16 | 16 | ||
| @@ -3186,6 +3186,8 @@ If FORM is a lambda or a macro, byte-compile it as a function." | |||
| 3186 | (byte-defop-compiler-1 mapatoms byte-compile-funarg) | 3186 | (byte-defop-compiler-1 mapatoms byte-compile-funarg) |
| 3187 | (byte-defop-compiler-1 mapconcat byte-compile-funarg) | 3187 | (byte-defop-compiler-1 mapconcat byte-compile-funarg) |
| 3188 | (byte-defop-compiler-1 mapc byte-compile-funarg) | 3188 | (byte-defop-compiler-1 mapc byte-compile-funarg) |
| 3189 | (byte-defop-compiler-1 maphash byte-compile-funarg) | ||
| 3190 | (byte-defop-compiler-1 map-char-table byte-compile-funarg) | ||
| 3189 | (byte-defop-compiler-1 sort byte-compile-funarg-2) | 3191 | (byte-defop-compiler-1 sort byte-compile-funarg-2) |
| 3190 | (byte-defop-compiler-1 let) | 3192 | (byte-defop-compiler-1 let) |
| 3191 | (byte-defop-compiler-1 let*) | 3193 | (byte-defop-compiler-1 let*) |