comparison lisp/mail/hashcash.el @ 87186:b37f01064ecf

* mail/hashcash.el (declare-function): * net/imap.el (declare-function): New no-op macro for backward compatibility.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sat, 08 Dec 2007 22:56:04 +0000
parents 2c08ad76fc1f
children bc4976b7380e
comparison
equal deleted inserted replaced
87185:86b80b67d316 87186:b37f01064ecf
46 ;; 46 ;;
47 ;; To check whether calculations are done before sending: 47 ;; To check whether calculations are done before sending:
48 ;; (add-hook 'message-send-hook 'hashcash-wait-or-cancel) 48 ;; (add-hook 'message-send-hook 'hashcash-wait-or-cancel)
49 49
50 ;;; Code: 50 ;;; Code:
51
52 (eval-and-compile
53 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
51 54
52 (defgroup hashcash nil 55 (defgroup hashcash nil
53 "Hashcash configuration." 56 "Hashcash configuration."
54 :group 'mail) 57 :group 'mail)
55 58