diff options
| author | John Wiegley <johnw@newartisans.com> | 2008-09-01 21:00:39 -0400 |
|---|---|---|
| committer | John Wiegley <johnw@newartisans.com> | 2008-09-01 21:35:02 -0400 |
| commit | 752977bd8a60bd362e2c46920096a4b3bd244640 (patch) | |
| tree | 9bc9d7cf172e3da1b92f729d820c071376c61fb0 /chess-ai.el | |
| parent | 5bfeda5da90b136381f36314228f4ad281c8948b (diff) | |
Only require 'cl when byte-compiling chess-ai. We don't yet use the CL
compatability functions at runtime.
Diffstat (limited to 'chess-ai.el')
| -rw-r--r-- | chess-ai.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chess-ai.el b/chess-ai.el index 7f3fc5f..4dca2cf 100644 --- a/chess-ai.el +++ b/chess-ai.el @@ -25,7 +25,8 @@ (require 'chess-common) (require 'chess-pos) (require 'chess-ply) -(require 'cl) +(eval-when-compile + (require 'cl)) (defgroup chess-ai () "A simple chess engine written in elisp. |
