diff options
author | Glenn Morris <rgm@gnu.org> | 2009-08-25 03:24:42 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-08-25 03:24:42 +0000 |
commit | 5ac1f9e050036f5bcb321f782b6a9ad0b2ba4f6a (patch) | |
tree | 575c2cf9597e887cebdf942f0ddcf53352ba07cb /lisp/play | |
parent | d54cc599f58e05abb379a975410f8e4cb9bd3a20 (diff) | |
download | emacs-5ac1f9e050036f5bcb321f782b6a9ad0b2ba4f6a.tar.gz |
(top-level): Don't require cl at run-time.
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/bubbles.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/bubbles.el b/lisp/play/bubbles.el index e8a666a577d..1a538eb8db2 100644 --- a/lisp/play/bubbles.el +++ b/lisp/play/bubbles.el @@ -82,7 +82,7 @@ (defconst bubbles-version "0.5" "Version number of bubbles.el.") (require 'gamegrid) -(require 'cl) +(eval-when-compile (require 'cl)) ; for 'case ;; User options |