summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-06-21 20:34:50 +0000
committerGlenn Morris <rgm@gnu.org>2008-06-21 20:34:50 +0000
commit0f185791939600f2c832291f70ba1d8fbf94cb83 (patch)
treebee934d90d49ce8ea544aec402347b22c1dd7361 /lisp
parent9c8dd25e484dfea21a0750634056e507b94dffde (diff)
downloademacs-0f185791939600f2c832291f70ba1d8fbf94cb83.tar.gz
Require 'cl when compiling.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/mail/hashcash.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d0c047e6de6..dd2d6aef8c2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -16,7 +16,7 @@
2008-06-21 Glenn Morris <rgm@gnu.org>
- * nxml/nxml-mode.el: Require 'cl when compiling.
+ * mail/hashcash.el, nxml/nxml-mode.el: Require 'cl when compiling.
* progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1
rather than mouse-1.
diff --git a/lisp/mail/hashcash.el b/lisp/mail/hashcash.el
index 4875cbb2959..7f291515ebd 100644
--- a/lisp/mail/hashcash.el
+++ b/lisp/mail/hashcash.el
@@ -50,6 +50,8 @@
(eval-and-compile
(unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
+(eval-when-compile (require 'cl)) ; for case
+
(defgroup hashcash nil
"Hashcash configuration."
:group 'mail)