Better customize type for gnus-refer-article-method. Fixed doc bug for same.
authorPer Abrahamsen <abraham@dina.kvl.dk>
Thu, 18 Nov 1999 11:18:41 +0000 (11:18 +0000)
committerPer Abrahamsen <abraham@dina.kvl.dk>
Thu, 18 Nov 1999 11:18:41 +0000 (11:18 +0000)
lisp/ChangeLog
lisp/gnus.el
texi/ChangeLog
texi/gnus.texi

index 4ac59e5..2dc13f6 100644 (file)
@@ -1,3 +1,8 @@
+1999-11-17  Per Abrahamsen  <abraham@dina.kvl.dk>
+
+       * gnus.el (gnus-refer-article-method): Made list value
+       customizable. 
+
 1999-11-17 13:09:37  Shenghuo ZHU  <zsh@cs.rochester.edu>
 
        * gnus-sum.el (gnus-summary-recenter): set-window-start with
 
        * 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.
index 2795463..057b9b0 100644 (file)
@@ -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/"
index fa80561..add0bc8 100644 (file)
@@ -1,3 +1,7 @@
+1999-11-17  Per Abrahamsen  <abraham@dina.kvl.dk>
+
+       * gnus.texi (Finding the Parent): Fix example.
+
 1999-11-16 10:09:44  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnus.texi: Addition.
index dd94614..1201dd0 100644 (file)
@@ -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