Synch to No Gnus 200512061446.
authoryamaoka <yamaoka>
Tue, 6 Dec 2005 15:36:57 +0000 (15:36 +0000)
committeryamaoka <yamaoka>
Tue, 6 Dec 2005 15:36:57 +0000 (15:36 +0000)
lisp/ChangeLog
lisp/gnus-fun.el
lisp/nntp.el

index c8cbae5..e0b93e8 100644 (file)
@@ -1,3 +1,10 @@
+2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * nntp.el (nntp-marks-directory): Fix custom group.
+
+       * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
+       steps when < 10.
+
 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
 
        * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
index 8073c57..01c44e1 100644 (file)
@@ -172,7 +172,7 @@ different input formats."
                         quant))))
        (if (> (length attempt) 726)
            (progn
-             (setq quant (- quant 2))
+             (setq quant (- quant (if (< quant 10) 1 2)))
              (gnus-message 9 "Length %d; trying quant %d"
                            (length attempt) quant))
          (setq done t)))
index e568cf4..265958b 100644 (file)
@@ -234,7 +234,7 @@ See `nnml-marks-is-evil' for more information.")
 (defcustom nntp-marks-directory
   (nnheader-concat gnus-directory "marks/")
   "*The directory where marks for nntp groups will be stored."
-  :group 'gnus
+  :group 'nntp
   :type 'directory)
 
 (defcustom nntp-authinfo-file "~/.authinfo"