From: Tetsuo Tsukamoto Date: Sun, 11 Sep 2011 08:20:33 +0000 (+0000) Subject: nnrss.el (nnrss-retrieve-groups): Decode the charset before looking up the file ... X-Git-Tag: emacs-pretest-24.0.90~104^2~96 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c36da500061f83c5ef9aac9373acd45c6e01137a;p=emacs.git nnrss.el (nnrss-retrieve-groups): Decode the charset before looking up the file (bug#9351). --- 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))