From: Per Abrahamsen Date: Thu, 18 Nov 1999 11:18:41 +0000 (+0000) Subject: Better customize type for gnus-refer-article-method. Fixed doc bug for same. X-Git-Url: http://cgit.sxemacs.org/?a=commitdiff_plain;h=62fbca7f03dcd8d9672eed7b7a3794ba59c2e90f;p=gnus Better customize type for gnus-refer-article-method. Fixed doc bug for same. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4ac59e533..2dc13f6a1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +1999-11-17 Per Abrahamsen + + * gnus.el (gnus-refer-article-method): Made list value + customizable. + 1999-11-17 13:09:37 Shenghuo ZHU * gnus-sum.el (gnus-summary-recenter): set-window-start with @@ -120,7 +125,7 @@ * gnus-cus.el (gnus-group-parameters): Changed from `defcustom' to `defconst'. - mention that it is both for group and topic parameters. + Mention that it is both for group and topic parameters. (gnus-extra-topic-parameters): New constant, including `subscribe' parameter. (gnus-extra-group-parameters): New constant. diff --git a/lisp/gnus.el b/lisp/gnus.el index 279546314..057b9b0aa 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -1004,7 +1004,15 @@ list, Gnus will try all the methods in the list until it finds a match." :group 'gnus-server :type '(choice (const :tag "default" nil) (const :tag "DejaNews" (nnweb "refer" (nnweb-type dejanews))) - gnus-select-method)) + gnus-select-method + (repeat :menu-tag "Try multiple" + :tag "Multiple" + :value (current (nnweb "refer" (nnweb-type dejanews))) + (choice :tag "Method" + (const current) + (const :tag "DejaNews" + (nnweb "refer" (nnweb-type dejanews))) + gnus-select-method)))) (defcustom gnus-group-faq-directory '("/ftp@mirrors.aol.com:/pub/rtfm/usenet/" diff --git a/texi/ChangeLog b/texi/ChangeLog index fa80561ab..add0bc801 100644 --- a/texi/ChangeLog +++ b/texi/ChangeLog @@ -1,3 +1,7 @@ +1999-11-17 Per Abrahamsen + + * gnus.texi (Finding the Parent): Fix example. + 1999-11-16 10:09:44 Lars Magne Ingebrigtsen * gnus.texi: Addition. diff --git a/texi/gnus.texi b/texi/gnus.texi index dd94614ec..1201dd0c4 100644 --- a/texi/gnus.texi +++ b/texi/gnus.texi @@ -7436,7 +7436,7 @@ Here's an example setting that will first try the current method, and then ask Deja if that fails: @lisp -(setq gnus-article-refer-method +(setq gnus-refer-article-method '(current (nnweb "refer" (nnweb-type dejanews)))) @end lisp