diff options
| author | Dan Nicolaescu | 2007-12-08 22:56:04 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-12-08 22:56:04 +0000 |
| commit | c486a8e4ff23168c0a45466f72ffe4efb6a8dfc9 (patch) | |
| tree | 1a34a44fa9579b1f10dc6991a897cf7935746103 | |
| parent | 4f85908cfe4632dbd5f9d9f4412ccdfb74eafbf2 (diff) | |
| download | emacs-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/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/mail/hashcash.el | 3 | ||||
| -rw-r--r-- | lisp/net/imap.el | 1 |
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 @@ | |||
| 1 | 2007-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 | |||
| 1 | 2007-12-08 Eli Zaretskii <eliz@gnu.org> | 7 | 2007-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") |