diff options
| author | Dave Love | 2000-08-27 21:55:00 +0000 |
|---|---|---|
| committer | Dave Love | 2000-08-27 21:55:00 +0000 |
| commit | 28bb2cef0204faf0dbbce096ec6d18810ff273e8 (patch) | |
| tree | a29889b989e8d5aa975922371b07a8647b00a3ae | |
| parent | f7c436c1c8538b9b593f7d7040bcbee2b0ad79d0 (diff) | |
| download | emacs-28bb2cef0204faf0dbbce096ec6d18810ff273e8.tar.gz emacs-28bb2cef0204faf0dbbce096ec6d18810ff273e8.zip | |
(mapc): Use byte-compile-funarg.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a38bfd37246..56c4d3bf2bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-08-27 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg. | ||
| 4 | |||
| 1 | 2000-08-27 Miles Bader <miles@gnu.org> | 5 | 2000-08-27 Miles Bader <miles@gnu.org> |
| 2 | 6 | ||
| 3 | * faces.el (read-face-font, read-face-and-attribute): Tweak prompts. | 7 | * faces.el (read-face-font, read-face-and-attribute): Tweak prompts. |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index dbcbe5c8c77..bdcb17cfa76 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.72 $") | 13 | (defconst byte-compile-version "$Revision: 2.73 $") |
| 14 | 14 | ||
| 15 | ;; This file is part of GNU Emacs. | 15 | ;; This file is part of GNU Emacs. |
| 16 | 16 | ||
| @@ -2912,6 +2912,7 @@ If FORM is a lambda or a macro, byte-compile it as a function." | |||
| 2912 | (byte-defop-compiler-1 mapcar byte-compile-funarg) | 2912 | (byte-defop-compiler-1 mapcar byte-compile-funarg) |
| 2913 | (byte-defop-compiler-1 mapatoms byte-compile-funarg) | 2913 | (byte-defop-compiler-1 mapatoms byte-compile-funarg) |
| 2914 | (byte-defop-compiler-1 mapconcat byte-compile-funarg) | 2914 | (byte-defop-compiler-1 mapconcat byte-compile-funarg) |
| 2915 | (byte-defop-compiler-1 mapc byte-compile-funarg) | ||
| 2915 | (byte-defop-compiler-1 sort byte-compile-funarg-2) | 2916 | (byte-defop-compiler-1 sort byte-compile-funarg-2) |
| 2916 | (byte-defop-compiler-1 let) | 2917 | (byte-defop-compiler-1 let) |
| 2917 | (byte-defop-compiler-1 let*) | 2918 | (byte-defop-compiler-1 let*) |