diff options
| author | Stefan Monnier | 2006-07-07 16:34:44 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-07-07 16:34:44 +0000 |
| commit | e0b4be6cc0e9ca0ff1e5fe8c8e3c042cccdc76e7 (patch) | |
| tree | c6b43293dde9383bd1df1a9e077e51cc57e0dd2a | |
| parent | 91fe949656b93b5c279dbca9d7b072e7a8ae4387 (diff) | |
| download | emacs-e0b4be6cc0e9ca0ff1e5fe8c8e3c042cccdc76e7.tar.gz emacs-e0b4be6cc0e9ca0ff1e5fe8c8e3c042cccdc76e7.zip | |
(byte-compile-form): The `byte-compile'
property may contain an anonymous function rather than a symbol.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c0b24ae8561..f66b3838c2a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile' | ||
| 4 | property may contain an anonymous function rather than a symbol. | ||
| 5 | |||
| 3 | * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness. | 6 | * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness. |
| 4 | 7 | ||
| 5 | * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>: | 8 | * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>: |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index ebb2f11764a..02a88c13973 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -2791,7 +2791,7 @@ That command is designed for interactive use only" fn)) | |||
| 2791 | ;; `cl-byte-compile-compiler-macro' but if CL isn't | 2791 | ;; `cl-byte-compile-compiler-macro' but if CL isn't |
| 2792 | ;; loaded, this function doesn't exist. | 2792 | ;; loaded, this function doesn't exist. |
| 2793 | (or (not (memq handler '(cl-byte-compile-compiler-macro))) | 2793 | (or (not (memq handler '(cl-byte-compile-compiler-macro))) |
| 2794 | (fboundp handler)) | 2794 | (functionp handler)) |
| 2795 | (not (and (byte-compile-version-cond | 2795 | (not (and (byte-compile-version-cond |
| 2796 | byte-compile-compatibility) | 2796 | byte-compile-compatibility) |
| 2797 | (get (get fn 'byte-opcode) 'emacs19-opcode)))) | 2797 | (get (get fn 'byte-opcode) 'emacs19-opcode)))) |