From 184f3942d02ab832929dd95cfd7d08d3a030413b Mon Sep 17 00:00:00 2001 From: yamaoka Date: Thu, 26 Aug 2004 07:05:07 +0000 Subject: [PATCH] Synch to No Gnus 200408260704. --- lisp/ChangeLog | 6 ++++++ lisp/gnus-group.el | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed8dd10..91e3fe0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2004-08-26 Katsumi Yamaoka + + * 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 * gnus-util.el (gnus-bind-print-variables): New macro. diff --git a/lisp/gnus-group.el b/lisp/gnus-group.el index 2de2976..c0bc3ee 100644 --- a/lisp/gnus-group.el +++ b/lisp/gnus-group.el @@ -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) -- 1.7.10.4