diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-12-08 22:56:04 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-12-08 22:56:04 +0000 |
commit | c486a8e4ff23168c0a45466f72ffe4efb6a8dfc9 (patch) | |
tree | 1a34a44fa9579b1f10dc6991a897cf7935746103 /lisp/mail/hashcash.el | |
parent | 4f85908cfe4632dbd5f9d9f4412ccdfb74eafbf2 (diff) | |
download | emacs-c486a8e4ff23168c0a45466f72ffe4efb6a8dfc9.tar.gz emacs-c486a8e4ff23168c0a45466f72ffe4efb6a8dfc9.tar.bz2 emacs-c486a8e4ff23168c0a45466f72ffe4efb6a8dfc9.zip |
* mail/hashcash.el (declare-function):
* net/imap.el (declare-function): New no-op macro for backward
compatibility.
Diffstat (limited to 'lisp/mail/hashcash.el')
-rw-r--r-- | lisp/mail/hashcash.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/mail/hashcash.el b/lisp/mail/hashcash.el index 22005ce957e..1f4483a7c94 100644 --- a/lisp/mail/hashcash.el +++ b/lisp/mail/hashcash.el @@ -49,6 +49,9 @@ ;;; Code: +(eval-and-compile + (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) + (defgroup hashcash nil "Hashcash configuration." :group 'mail) |