* gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 13 Sep 2007 22:30:42 +0000 (22:30 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 13 Sep 2007 22:30:42 +0000 (22:30 +0000)
* gnus.el: Do.

lisp/ChangeLog
lisp/gnus-sum.el
lisp/gnus.el

index b23f779..9ab37f5 100644 (file)
@@ -1,3 +1,10 @@
+2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
+       Suggested by Leo <sdl.web@gmail.com>.
+
+       * gnus.el: Do.
+
 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus.el (gnus-newsgroup-maximum-articles): Rename from
index dfda9ab..db3932b 100644 (file)
@@ -1138,6 +1138,17 @@ default charset will be used instead."
   :type '(repeat symbol)
   :group 'gnus-charset)
 
+(defcustom gnus-newsgroup-maximum-articles 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))
+
 (gnus-define-group-parameter
  ignored-charsets
  :type list
index 784a177..c5038b7 100644 (file)
@@ -1515,17 +1515,6 @@ If it is nil, no confirmation is required."
   :type '(choice (const :tag "No limit" nil)
                 integer))
 
-(defcustom gnus-newsgroup-maximum-articles 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.