diff options
author | Miles Bader <miles@gnu.org> | 2006-02-13 22:57:54 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2006-02-13 22:57:54 +0000 |
commit | 240029d92c295507f17ceb6e9d30b93610bc4deb (patch) | |
tree | 47667f190b22577b13ba10cb18a73cbe7611332d | |
parent | 621b3aac569662b9a908b484457f6fde1e783e13 (diff) | |
download | emacs-240029d92c295507f17ceb6e9d30b93610bc4deb.tar.gz |
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-82
Creator: Michael Olson <mwolson@gnu.org>
Fix compiler error in erc-dcc.el.
-rw-r--r-- | lisp/erc/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/erc/erc-dcc.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 4653f4177e5..3d44f87777c 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -1,3 +1,7 @@ +2006-02-13 Michael Olson <mwolson@gnu.org> + + * erc-dcc.el: Use (eval-when-compile (require 'cl)). + 2006-02-12 Michael Olson <mwolson@gnu.org> * erc-autoaway.el, erc-dcc.el, erc-ezbounce.el, erc-fill.el, diff --git a/lisp/erc/erc-dcc.el b/lisp/erc/erc-dcc.el index 9b1e136ce59..4b9172f06d7 100644 --- a/lisp/erc/erc-dcc.el +++ b/lisp/erc/erc-dcc.el @@ -55,7 +55,8 @@ (require 'erc) (eval-when-compile - (require 'pcomplete)) + (require 'cl) + (require 'pcomplete)) (defgroup erc-dcc nil "DCC stands for Direct Client Communication, where you and your |