]> git.eshelyaron.com Git - emacs.git/commitdiff
* mail/hashcash.el (declare-function):
authorDan Nicolaescu <dann@ics.uci.edu>
Sat, 8 Dec 2007 22:56:04 +0000 (22:56 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sat, 8 Dec 2007 22:56:04 +0000 (22:56 +0000)
* net/imap.el (declare-function): New no-op macro for backward
compatibility.

lisp/ChangeLog
lisp/mail/hashcash.el
lisp/net/imap.el

index 638fdbae06b7741da699d6d53bc481830f0b3154..ec7ce254dae9c77e080d6640beb1870f23cb2f32 100644 (file)
@@ -1,7 +1,13 @@
+2007-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * mail/hashcash.el (declare-function):
+       * net/imap.el (declare-function): New no-op macro for backward
+       compatibility.
+
 2007-12-08  Eli Zaretskii  <eliz@gnu.org>
 
        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)
index 22005ce957ed48e1e1e719d54b2e2864ce73ac56..1f4483a7c9489b183a6c9b935497fc108825ce44 100644 (file)
@@ -49,6 +49,9 @@
 
 ;;; Code:
 
+(eval-and-compile
+  (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
+
 (defgroup hashcash nil
   "Hashcash configuration."
   :group 'mail)
index 8e41c68720b4baf20ba1d609dc0bb5c75a011260..85af73972fe06bd5376a530cf58c142528762794 100644 (file)
 
 (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")