1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

(top-level): Require `cl' when compiling.

This commit is contained in:
Eli Zaretskii 2008-10-20 09:40:23 +00:00
parent 09c91affa8
commit d0fc47eda0
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2008-10-20 Eli Zaretskii <eliz@gnu.org>
* subr.el (top-level): Require `cl' when compiling.
2008-10-20 David Reitter <david.reitter@gmail.com>
* info.el (Info-mode): Do not remove an existing header line if

View File

@ -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'.")