diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-10-17 20:17:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-10-17 20:17:09 +0000 |
commit | 5cc7d37c6ef5ebe7d48d0ba31e8958b50a29dcc8 (patch) | |
tree | 329834339b721317b5a50ed21eb74a8741ced388 /lisp/gnus/nntp.el | |
parent | d59cd657865f5ba421c96c304731915f983717d4 (diff) | |
download | emacs-5cc7d37c6ef5ebe7d48d0ba31e8958b50a29dcc8.tar.gz |
Require `cl' before using nnoo-declare.
Diffstat (limited to 'lisp/gnus/nntp.el')
-rw-r--r-- | lisp/gnus/nntp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 4a82b036dd7..0812be9917d 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -28,14 +28,14 @@ (require 'nnoo) (require 'gnus-util) +(eval-when-compile (require 'cl)) + (nnoo-declare nntp) (eval-and-compile (unless (fboundp 'open-network-stream) (require 'tcp))) -(eval-when-compile (require 'cl)) - (defvoo nntp-address nil "Address of the physical nntp server.") |