diff options
| author | Dave Love | 2000-11-06 22:50:28 +0000 |
|---|---|---|
| committer | Dave Love | 2000-11-06 22:50:28 +0000 |
| commit | 117b4b782b4da734f2be90824b5d4aec69dc6ebd (patch) | |
| tree | ce21f2715103d0c634af00e392f72e549e99e089 | |
| parent | 456d96353c8e7eadfe3b62afd5ff45559057d39b (diff) | |
| download | emacs-117b4b782b4da734f2be90824b5d4aec69dc6ebd.tar.gz emacs-117b4b782b4da734f2be90824b5d4aec69dc6ebd.zip | |
Require cl when compiling.
| -rw-r--r-- | lisp/gnus/uudecode.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/gnus/uudecode.el b/lisp/gnus/uudecode.el index 3b99ea8a212..8f82ef83cba 100644 --- a/lisp/gnus/uudecode.el +++ b/lisp/gnus/uudecode.el | |||
| @@ -34,6 +34,8 @@ | |||
| 34 | 34 | ||
| 35 | ;;; Code: | 35 | ;;; Code: |
| 36 | 36 | ||
| 37 | (eval-when-compile (require 'cl)) | ||
| 38 | |||
| 37 | (defalias 'uudecode-char-int | 39 | (defalias 'uudecode-char-int |
| 38 | (if (fboundp 'char-int) | 40 | (if (fboundp 'char-int) |
| 39 | 'char-int | 41 | 'char-int |