From: John Paul Wallington Date: Sat, 4 Mar 2006 21:41:10 +0000 (+0000) Subject: (toplevel): Require `cl' at compile-time. X-Git-Tag: emacs-pretest-22.0.90~3789 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=681979fa1125284e3ed5a2df79167cd5ba130df3;p=emacs.git (toplevel): Require `cl' at compile-time. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 57fb4486ee0..7d22c41255b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-03-04 John Paul Wallington + + * wdired.el (toplevel): Require `cl' at compile-time. + 2006-03-04 Andreas Schwab * server.el (server-process-filter): Handle errors during diff --git a/lisp/wdired.el b/lisp/wdired.el index 2471ab909c6..1363181524c 100644 --- a/lisp/wdired.el +++ b/lisp/wdired.el @@ -103,6 +103,7 @@ (defvar dired-backup-overwrite) ; Only in Emacs 20.x this is a custom var +(eval-when-compile (require 'cl)) (require 'dired) (autoload 'dired-do-create-files-regexp "dired-aux") (autoload 'dired-call-process "dired-aux")