diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-10-01 20:56:19 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-10-01 20:56:19 +0000 |
commit | 04ad70ace5a0736a531fc54599c20adf09d5fdbb (patch) | |
tree | ea41180b35283781b5e0cd0f00d66708a7cf3b0d /lisp | |
parent | a5f06018e145bba96209d6779854d218b2c38c75 (diff) | |
download | emacs-04ad70ace5a0736a531fc54599c20adf09d5fdbb.tar.gz emacs-04ad70ace5a0736a531fc54599c20adf09d5fdbb.tar.bz2 emacs-04ad70ace5a0736a531fc54599c20adf09d5fdbb.zip |
(gnus-summary-respool-default-method): Fix type.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/gnus-sum.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index d1b9deb21e0..d48cce763ab 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -6869,7 +6869,8 @@ re-spool using this method." (defcustom gnus-summary-respool-default-method nil "Default method for respooling an article. If nil, use to the current newsgroup method." - :type 'gnus-select-method-name + :type '(choice (gnus-select-method :value (nnml "")) + (const nil)) :group 'gnus-summary-mail) (defun gnus-summary-respool-article (&optional n method) |