From d0fc47eda0459c486dd114eee8674df1a6e4bc6a Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 20 Oct 2008 09:40:23 +0000 Subject: [PATCH] (top-level): Require `cl' when compiling. --- lisp/ChangeLog | 4 ++++ lisp/subr.el | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ed5c070a68..4798d2cc96a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-10-20 Eli Zaretskii + + * subr.el (top-level): Require `cl' when compiling. + 2008-10-20 David Reitter * 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 @@ ;;; Commentary: ;;; Code: + +;; This is for lexical-let in apply-partially. +(eval-when-compile (require 'cl)) + (defvar custom-declare-variable-list nil "Record `defcustom' calls made before `custom.el' is loaded to handle them. Each element of this list holds the arguments to one call to `defcustom'.") -- 2.39.5