aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-20 09:40:23 +0000
committerEli Zaretskii2008-10-20 09:40:23 +0000
commitd0fc47eda0459c486dd114eee8674df1a6e4bc6a (patch)
tree541b284fc5b134502a9c689a6c16b1891fcba175
parent09c91affa8a477985161dfa5c5ceb00b9cedf22f (diff)
downloademacs-d0fc47eda0459c486dd114eee8674df1a6e4bc6a.tar.gz
emacs-d0fc47eda0459c486dd114eee8674df1a6e4bc6a.zip
(top-level): Require `cl' when compiling.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el4
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 @@
12008-10-20 Eli Zaretskii <eliz@gnu.org>
2
3 * subr.el (top-level): Require `cl' when compiling.
4
12008-10-20 David Reitter <david.reitter@gmail.com> 52008-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.
29Each element of this list holds the arguments to one call to `defcustom'.") 33Each element of this list holds the arguments to one call to `defcustom'.")