diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ed5c070a68..4798d2cc96a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-10-20 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (top-level): Require `cl' when compiling. | ||
| 4 | |||
| 1 | 2008-10-20 David Reitter <david.reitter@gmail.com> | 5 | 2008-10-20 David Reitter <david.reitter@gmail.com> |
| 2 | 6 | ||
| 3 | * info.el (Info-mode): Do not remove an existing header line if | 7 | * info.el (Info-mode): Do not remove an existing header line if |
diff --git a/lisp/subr.el b/lisp/subr.el index d078f3dd9ef..f2f70d36a8c 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -24,6 +24,10 @@ | |||
| 24 | ;;; Commentary: | 24 | ;;; Commentary: |
| 25 | 25 | ||
| 26 | ;;; Code: | 26 | ;;; Code: |
| 27 | |||
| 28 | ;; This is for lexical-let in apply-partially. | ||
| 29 | (eval-when-compile (require 'cl)) | ||
| 30 | |||
| 27 | (defvar custom-declare-variable-list nil | 31 | (defvar custom-declare-variable-list nil |
| 28 | "Record `defcustom' calls made before `custom.el' is loaded to handle them. | 32 | "Record `defcustom' calls made before `custom.el' is loaded to handle them. |
| 29 | Each element of this list holds the arguments to one call to `defcustom'.") | 33 | Each element of this list holds the arguments to one call to `defcustom'.") |