Synch to Gnus 200312030159.
authoryamaoka <yamaoka>
Wed, 3 Dec 2003 02:03:01 +0000 (02:03 +0000)
committeryamaoka <yamaoka>
Wed, 3 Dec 2003 02:03:01 +0000 (02:03 +0000)
lisp/ChangeLog
lisp/dns.el
lisp/gnus-util.el
lisp/gnus-xmas.el

index 3e4fe75..17fad0a 100644 (file)
@@ -1,3 +1,16 @@
+2003-12-03  Steve Youngs  <sryoungs@bigpond.net.au>
+
+       * gnus-xmas.el: Add autoloads for macros defined in gnus.el.
+       From Jerry James <james@xemacs.org>.
+
+       * gnus-util.el: Get rmail definitions when compiling.
+       From Jerry James <james@xemacs.org>.
+
+       * dns.el: Require gnus-xmas at compile time instead of trying to
+       autoload `gnus-xmas-open-network-stream' because it wasn't picking
+       up the macro.
+       From Jerry James <james@xemacs.org>.
+
 2003-12-01  Kevin Greiner <kgreiner@xpediantsolutions.com>
        * gnus-agent.el (gnus-agent-consider-all-articles): Updated
        docstring.
index 5e767d8..4a37823 100644 (file)
@@ -281,8 +281,8 @@ If TCP-P, the first two bytes of the package with be the length field."
       (setq dns-servers (nreverse dns-servers)))))
 
 ;;; Interface functions.
-
-(autoload 'gnus-xmacs-open-network-stream "gnus-xmas" nil nil 'macro)
+(when (featurep 'xemacs)
+  (eval-when-compile (require 'gnus-xmas)))
 
 (defmacro dns-make-network-process (server)
   (if (featurep 'xemacs)
index f111e0c..1b085e2 100644 (file)
@@ -851,6 +851,8 @@ with potentially long computations."
 ;;; Functions for saving to babyl/mail files.
 
 (eval-when-compile
+  (require 'rmail)
+  (autoload 'rmail-update-summary "rmailsum")
   (defvar rmail-default-rmail-file)
   (defvar mm-text-coding-system))
 
index f5babab..6fff59e 100644 (file)
 
 ;;; Code:
 
+(eval-when-compile
+  (autoload 'gnus-active "gnus" nil nil 'macro)
+  (autoload 'gnus-group-entry "gnus" nil nil 'macro)
+  (autoload 'gnus-info-level "gnus" nil nil 'macro)
+  (autoload 'gnus-info-marks "gnus" nil nil 'macro)
+  (autoload 'gnus-info-method "gnus" nil nil 'macro)
+  (autoload 'gnus-info-score "gnus" nil nil 'macro))
+
 (require 'text-props)
 (defvar menu-bar-mode (featurep 'menubar))
 (require 'messagexmas)