Synch to No Gnus 200408260704.
authoryamaoka <yamaoka>
Thu, 26 Aug 2004 07:05:07 +0000 (07:05 +0000)
committeryamaoka <yamaoka>
Thu, 26 Aug 2004 07:05:07 +0000 (07:05 +0000)
lisp/ChangeLog
lisp/gnus-group.el

index ed8dd10..91e3fe0 100644 (file)
@@ -1,3 +1,9 @@
+2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-group.el (gnus-group-line-format-alist): Convert the value
+       of gnus-tmp-news-method into string under XEmacs.  It will be
+       passed to gnus-correct-length which takes only a string argument.
+
 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-util.el (gnus-bind-print-variables): New macro.
index 2de2976..c0bc3ee 100644 (file)
@@ -505,7 +505,10 @@ simple manner.")
     (?O gnus-tmp-moderated-string ?s)
     (?p gnus-tmp-process-marked ?c)
     (?s gnus-tmp-news-server ?s)
-    (?n gnus-tmp-news-method ?s)
+    (?n ,(if (featurep 'xemacs)
+            '(symbol-name gnus-tmp-news-method)
+          'gnus-tmp-news-method)
+       ?s)
     (?P gnus-group-indentation ?s)
     (?E gnus-tmp-group-icon ?s)
     (?B gnus-tmp-summary-live ?c)