aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-12-08 22:56:04 +0000
committerDan Nicolaescu2007-12-08 22:56:04 +0000
commitc486a8e4ff23168c0a45466f72ffe4efb6a8dfc9 (patch)
tree1a34a44fa9579b1f10dc6991a897cf7935746103
parent4f85908cfe4632dbd5f9d9f4412ccdfb74eafbf2 (diff)
downloademacs-c486a8e4ff23168c0a45466f72ffe4efb6a8dfc9.tar.gz
emacs-c486a8e4ff23168c0a45466f72ffe4efb6a8dfc9.zip
* mail/hashcash.el (declare-function):
* net/imap.el (declare-function): New no-op macro for backward compatibility.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/mail/hashcash.el3
-rw-r--r--lisp/net/imap.el1
3 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 638fdbae06b..ec7ce254dae 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,13 @@
12007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * mail/hashcash.el (declare-function):
4 * net/imap.el (declare-function): New no-op macro for backward
5 compatibility.
6
12007-12-08 Eli Zaretskii <eliz@gnu.org> 72007-12-08 Eli Zaretskii <eliz@gnu.org>
2 8
3 Sync makefile.w32-in with Makefile.in. 9 Sync makefile.w32-in with Makefile.in.
4 10
5 * makefile.w32-in (check-declare): New target. 11 * makefile.w32-in (check-declare): New target.
6 (BYTE_COMPILE_EXTRA_FLAGS): New variable. 12 (BYTE_COMPILE_EXTRA_FLAGS): New variable.
7 (.el.elc, compile-CMD, compile-SH, compile-always-CMD) 13 (.el.elc, compile-CMD, compile-SH, compile-always-CMD)
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 @@
49 49
50;;; Code: 50;;; Code:
51 51
52(eval-and-compile
53 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
54
52(defgroup hashcash nil 55(defgroup hashcash nil
53 "Hashcash configuration." 56 "Hashcash configuration."
54 :group 'mail) 57 :group 'mail)
diff --git a/lisp/net/imap.el b/lisp/net/imap.el
index 8e41c68720b..85af73972fe 100644
--- a/lisp/net/imap.el
+++ b/lisp/net/imap.el
@@ -140,6 +140,7 @@
140 140
141(eval-when-compile (require 'cl)) 141(eval-when-compile (require 'cl))
142(eval-and-compile 142(eval-and-compile
143 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))
143 (autoload 'starttls-open-stream "starttls") 144 (autoload 'starttls-open-stream "starttls")
144 (autoload 'starttls-negotiate "starttls") 145 (autoload 'starttls-negotiate "starttls")
145 (autoload 'sasl-find-mechanism "sasl") 146 (autoload 'sasl-find-mechanism "sasl")