diff options
| author | Luc Teirlinck | 2004-01-17 03:01:45 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-01-17 03:01:45 +0000 |
| commit | a151ecffc93a869eb8713e5e723a5ea7f08df4f5 (patch) | |
| tree | b7db30050596a847b921dce01c9d17af92422932 | |
| parent | 3c0882ae5c592d8466d8bdcc02f2cd143be60e4b (diff) | |
| download | emacs-a151ecffc93a869eb8713e5e723a5ea7f08df4f5.tar.gz emacs-a151ecffc93a869eb8713e5e723a5ea7f08df4f5.zip | |
Do not require cl at run time.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/cc-defs.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 129d97dd8f6..f302da428e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-01-16 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * progmodes/cc-defs.el: Do not require cl at run time. | ||
| 4 | |||
| 1 | 2004-01-16 Richard M. Stallman <rms@gnu.org> | 5 | 2004-01-16 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/cl.el (cl-cannot-unload): New function. | 7 | * emacs-lisp/cl.el (cl-cannot-unload): New function. |
diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el index dca12c67285..ad8b8a92bff 100644 --- a/lisp/progmodes/cc-defs.el +++ b/lisp/progmodes/cc-defs.el | |||
| @@ -100,7 +100,7 @@ | |||
| 100 | font-lock-keywords))) | 100 | font-lock-keywords))) |
| 101 | (cc-load "cc-fix"))) | 101 | (cc-load "cc-fix"))) |
| 102 | 102 | ||
| 103 | (cc-external-require 'cl) | 103 | (eval-when-compile (require 'cl)) |
| 104 | 104 | ||
| 105 | 105 | ||
| 106 | ;;; Variables also used at compile time. | 106 | ;;; Variables also used at compile time. |