From c36da500061f83c5ef9aac9373acd45c6e01137a Mon Sep 17 00:00:00 2001 From: Tetsuo Tsukamoto Date: Sun, 11 Sep 2011 08:20:33 +0000 Subject: [PATCH] nnrss.el (nnrss-retrieve-groups): Decode the charset before looking up the file (bug#9351). --- lisp/gnus/ChangeLog | 5 +++++ lisp/gnus/nnrss.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index e9e887dd34c..89a83543eb0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2011-09-10 Tetsuo Tsukamoto (tiny change) + + * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking + up the file (bug#9351). + 2011-09-10 Lars Magne Ingebrigtsen * nnimap.el: Redo the charset handling. Let Gnus encode the names, as diff --git a/lisp/gnus/nnrss.el b/lisp/gnus/nnrss.el index b12700fac64..3e3b7326f29 100644 --- a/lisp/gnus/nnrss.el +++ b/lisp/gnus/nnrss.el @@ -363,12 +363,13 @@ for decoding when the cdr that the data specify is not available.") (deffoo nnrss-retrieve-groups (groups &optional server) (dolist (group groups) + (setq group (nnrss-decode-group-name group)) (nnrss-possibly-change-group group server) (nnrss-check-group group server)) (with-current-buffer nntp-server-buffer (erase-buffer) (dolist (group groups) - (let ((elem (assoc group nnrss-server-data))) + (let ((elem (assoc (gnus-group-decoded-name group) nnrss-server-data))) (insert (format "%S %s 1 y\n" group (or (cadr elem) 0))))) 'active)) -- 2.39.5