From 73e4f39b6e09cbd3d5df191e73635bb727403a95 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 24 Mar 1999 01:57:38 +0000 Subject: [PATCH] * (gnus-set-summary-default-charset): Strip method and foreign server name from the newsgroup name. --- lisp/gnus-i18n.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/gnus-i18n.el b/lisp/gnus-i18n.el index 78eeb03..f516792 100644 --- a/lisp/gnus-i18n.el +++ b/lisp/gnus-i18n.el @@ -69,6 +69,10 @@ It is specified by variable `gnus-newsgroup-default-charset-alist' (set-buffer gnus-summary-buffer) gnus-newsgroup-name)) (alist gnus-newsgroup-default-charset-alist)) + ;; Strip method and foreign server name. + (when (string-match ":" group) + (setq group (substring group (match-end 0))) + ) (while alist (let ((pair (car alist))) (if (string-match (car pair) group) -- 1.7.10.4