From: Eli Zaretskii Date: Mon, 20 Oct 2008 16:14:06 +0000 (+0000) Subject: Fix last change. X-Git-Tag: emacs-pretest-23.0.90~2331 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e224699a4a1f9d6889685204b84eeb3be382fd82;p=emacs.git Fix last change. --- diff --git a/lisp/subr.el b/lisp/subr.el index f2f70d36a8c..38239cac94e 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -25,9 +25,6 @@ ;;; 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'.") @@ -74,6 +71,11 @@ the end of FILE must be all on the same line. For example: For more information, see Info node `elisp(Declaring Functions)'." ;; Does nothing - byte-compile-declare-function does the work. nil) + +;; This is for lexical-let in apply-partially. It is here because cl +;; needs declare-function, defined above. +(eval-when-compile (require 'cl)) + ;;;; Basic Lisp macros.