Mercurial > emacs
changeset 98939:8d3f352dfa8d
Fix last change.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 20 Oct 2008 16:14:06 +0000 |
parents | 1fa392febf9a |
children | d48e1d80a649 |
files | lisp/subr.el |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/subr.el Mon Oct 20 16:06:03 2008 +0000 +++ b/lisp/subr.el Mon Oct 20 16:14:06 2008 +0000 @@ -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 @@ 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.