aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-06-21 20:34:50 +0000
committerGlenn Morris2008-06-21 20:34:50 +0000
commit0f185791939600f2c832291f70ba1d8fbf94cb83 (patch)
treebee934d90d49ce8ea544aec402347b22c1dd7361
parent9c8dd25e484dfea21a0750634056e507b94dffde (diff)
downloademacs-0f185791939600f2c832291f70ba1d8fbf94cb83.tar.gz
emacs-0f185791939600f2c832291f70ba1d8fbf94cb83.zip
Require 'cl when compiling.
-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 @@
16 16
172008-06-21 Glenn Morris <rgm@gnu.org> 172008-06-21 Glenn Morris <rgm@gnu.org>
18 18
19 * nxml/nxml-mode.el: Require 'cl when compiling. 19 * mail/hashcash.el, nxml/nxml-mode.el: Require 'cl when compiling.
20 20
21 * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1 21 * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1
22 rather than mouse-1. 22 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 @@
50(eval-and-compile 50(eval-and-compile
51 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) 51 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
52 52
53(eval-when-compile (require 'cl)) ; for case
54
53(defgroup hashcash nil 55(defgroup hashcash nil
54 "Hashcash configuration." 56 "Hashcash configuration."
55 :group 'mail) 57 :group 'mail)