diff options
author | Miles Bader <miles@gnu.org> | 2007-08-21 04:51:30 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-08-21 04:51:30 +0000 |
commit | bdaf8a62d53cf8d5a0dc4f0dc530ecd6fc1f44fe (patch) | |
tree | 083bb8dc3faa311402bb8e86a67a4b9aeb207592 /lisp/gnus/gnus.el | |
parent | cb3fe75728ff4703c11aeb61c079a97da11ec637 (diff) | |
parent | 30a718e6b77f4f0c422f748dd14ea772b7fa2a1a (diff) | |
download | emacs-bdaf8a62d53cf8d5a0dc4f0dc530ecd6fc1f44fe.tar.gz emacs-bdaf8a62d53cf8d5a0dc4f0dc530ecd6fc1f44fe.tar.bz2 emacs-bdaf8a62d53cf8d5a0dc4f0dc530ecd6fc1f44fe.zip |
Merge from emacs--rel--22
Patches applied:
* emacs--rel--22 (patch 93-96)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 245)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-856
Diffstat (limited to 'lisp/gnus/gnus.el')
-rw-r--r-- | lisp/gnus/gnus.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 0e8e9908cf4..3f75bba6d1c 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -1501,6 +1501,17 @@ If it is nil, no confirmation is required." :type '(choice (const :tag "No limit" nil) integer)) +(defcustom gnus-maximum-newsgroup nil + "The maximum number of articles a newsgroup. +If this is a number, old articles in a newsgroup exceeding this number +are silently ignored. If it is nil, no article is ignored. Note that +setting this variable to a number might prevent you from reading very +old articles." + :group 'gnus-group-select + :version "22.2" + :type '(choice (const :tag "No limit" nil) + integer)) + (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix))) "*Non-nil means that the default name of a file to save articles in is the group name. If it's nil, the directory form of the group name is used instead. |