# HG changeset patch # User Dan Nicolaescu # Date 1197154564 0 # Node ID b37f01064ecfd017b038f91b2aea3d7dabd527c6 # Parent 86b80b67d31615c675982698c44b342184bf9c3b * mail/hashcash.el (declare-function): * net/imap.el (declare-function): New no-op macro for backward compatibility. diff -r 86b80b67d316 -r b37f01064ecf lisp/ChangeLog --- a/lisp/ChangeLog Sat Dec 08 22:27:34 2007 +0000 +++ b/lisp/ChangeLog Sat Dec 08 22:56:04 2007 +0000 @@ -1,7 +1,13 @@ +2007-12-08 Dan Nicolaescu + + * mail/hashcash.el (declare-function): + * net/imap.el (declare-function): New no-op macro for backward + compatibility. + 2007-12-08 Eli Zaretskii Sync makefile.w32-in with Makefile.in. - + * makefile.w32-in (check-declare): New target. (BYTE_COMPILE_EXTRA_FLAGS): New variable. (.el.elc, compile-CMD, compile-SH, compile-always-CMD) diff -r 86b80b67d316 -r b37f01064ecf lisp/mail/hashcash.el --- a/lisp/mail/hashcash.el Sat Dec 08 22:27:34 2007 +0000 +++ b/lisp/mail/hashcash.el Sat Dec 08 22:56:04 2007 +0000 @@ -49,6 +49,9 @@ ;;; Code: +(eval-and-compile + (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) + (defgroup hashcash nil "Hashcash configuration." :group 'mail) diff -r 86b80b67d316 -r b37f01064ecf lisp/net/imap.el --- a/lisp/net/imap.el Sat Dec 08 22:27:34 2007 +0000 +++ b/lisp/net/imap.el Sat Dec 08 22:56:04 2007 +0000 @@ -140,6 +140,7 @@ (eval-when-compile (require 'cl)) (eval-and-compile + (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))) (autoload 'starttls-open-stream "starttls") (autoload 'starttls-negotiate "starttls") (autoload 'sasl-find-mechanism "sasl")