I posted some message about this problem to this list and also to the
gnus list a few days ago. The problem is that gnus is byte-compiling
some lambda function at run time, apparently some late change to the
xemacs byte compiler is incompatible with such use.
D:\gnus>diff -u lisp\nnmail.el d:\local\xemacs\site-packages\lisp\gnus\nnmail.el
--- lisp\nnmail.el Sun Aug 05 15:28:09 2001
+++ d:\local\xemacs\site-packages\lisp\gnus\nnmail.el Tue Aug 07 14:06:32 2001
@@ -1632,7 +1632,7 @@
(when (setq new
(mail-source-fetch
source
- (gnus-byte-compile
+; (gnus-byte-compile
`(lambda (file orig-file)
(nnmail-split-incoming
file ',(intern (format "%s-save-mail" method))
@@ -1640,7 +1640,8 @@
(if (equal file orig-file)
nil
(nnmail-get-split-group orig-file ',source))
- ',(intern (format "%s-active-number"
method)))))))
+ ',(intern (format "%s-active-number" method))))))
+;)
(incf total new)
(incf i)))
;; If we did indeed read any incoming spools, we save all info.
--
Fabrice