diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-03-24 20:46:12 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-03-24 20:46:12 +0000 |
commit | 79c70818bc8bdc1e715516c1f373143c3986de4b (patch) | |
tree | 95225e8471ac3e92ccd48348c7ba6e23c78988df /lisp/cus-dep.el | |
parent | b2eb3813198092abc5a6d5e97e13923de1c59f41 (diff) | |
download | emacs-79c70818bc8bdc1e715516c1f373143c3986de4b.tar.gz |
Require CL at compile-time only.
Diffstat (limited to 'lisp/cus-dep.el')
-rw-r--r-- | lisp/cus-dep.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index 8b689bf0430..180d6679b3e 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el @@ -24,7 +24,7 @@ ;;; Code: -(require 'cl) +(eval-when-compile (require 'cl)) (require 'widget) (require 'cus-face) (require 'autoload) |