From 240029d92c295507f17ceb6e9d30b93610bc4deb Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Mon, 13 Feb 2006 22:57:54 +0000 Subject: [PATCH] Revision: emacs@sv.gnu.org/emacs--devo--0--patch-82 Creator: Michael Olson Fix compiler error in erc-dcc.el. --- lisp/erc/ChangeLog | 4 ++++ lisp/erc/erc-dcc.el | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * erc-dcc.el: Use (eval-when-compile (require 'cl)). + 2006-02-12 Michael Olson * 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 -- 2.39.2