From: yamaoka Date: Thu, 1 May 2003 14:34:27 +0000 (+0000) Subject: T-gnus 6.15.24 (quimby) revision 00. X-Git-Tag: t-gnus-6_15_24-00-quimby X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=refs%2Ftags%2Ft-gnus-6_15_24-00-quimby;p=elisp%2Fgnus.git- T-gnus 6.15.24 (quimby) revision 00. --- diff --git a/ChangeLog b/ChangeLog index a5eb51d..0b30cec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2003-05-01 Katsumi Yamaoka + + * lisp/gnus-vers.el: T-gnus 6.15.24 (quimby) revision 00. + +2003-05-01 Katsumi Yamaoka + + * lisp/gnus-vers.el: T-gnus 6.15.23 revision 00. + 2003-05-01 Simon Josefsson * GNUS-NEWS: Add prefix limit feature. diff --git a/GNUS-NEWS b/GNUS-NEWS index c995b7e..79b7cf7 100644 --- a/GNUS-NEWS +++ b/GNUS-NEWS @@ -53,7 +53,7 @@ picons, install the picons database from and point `gnus-picon-databases' to that location. -** If the new option `gnus-treat-body-boundary' is non-nil, a boundary +** If the new option `gnus-treat-body-boundary' is `head', a boundary line is drawn at the end of the headers. ** Retrieval of charters and control messages diff --git a/README.T-gnus b/README.T-gnus index 407e3c2..dfc8fc7 100644 --- a/README.T-gnus +++ b/README.T-gnus @@ -33,5 +33,5 @@ NEWS: * T-gnus 6.15 - this is based on Oort Gnus. - The latest T-gnus is T-gnus 6.15.23 (based on Oort Gnus 0.23). It + The latest T-gnus is T-gnus 6.15.24 (based on Oort Gnus 0.24). It requires SEMI 1.14, FLIM 1.14, and APEL 10.0 or later. diff --git a/README.semi b/README.semi index 56c21a4..550ec8c 100644 --- a/README.semi +++ b/README.semi @@ -4,7 +4,7 @@ What is T-gnus? =============== T-gnus is an improvement of Gnus with SEMI's MIME feature. T-gnus -6.15 is based on Oort Gnus v0.23. SEMI may stand for "SEMI is Emacs +6.15 is based on Oort Gnus v0.24. SEMI may stand for "SEMI is Emacs MIME Interface" and is developped to provide an easy interfaces for users to handle MIME message structures. For further information, refer to REASME.en of SEMI. diff --git a/README.semi.ja b/README.semi.ja index 22b7acb..6382d65 100644 --- a/README.semi.ja +++ b/README.semi.ja @@ -4,7 +4,7 @@ T-gnus とは? ============= T-gnus は、SEMI を利用して Gnus に MIME 機能を追加するものです。 -T-gnus 6.15 は Oort Gnus v0.23 をベースにしています。SEMI は Emacs で +T-gnus 6.15 は Oort Gnus v0.24 をベースにしています。SEMI は Emacs で MIME を使えるようにするもので、MIME message の構文の構造と利用者の間を つなぐインターフェースを提供します。詳しくは、SEMI の README.en を参照 してください。 diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fefb716..1f1262e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,21 @@ 2003-05-01 Lars Magne Ingebrigtsen + * gnus.el (gnus-version-number): Bump. + +2003-05-01 Lars Magne Ingebrigtsen + + * gnus.el: Oort Gnus v0.23 is released. + +2003-05-01 Lars Magne Ingebrigtsen + + * spam-stat.el (spam-stat-test-directory): Compare against zero. + +2003-05-01 Trey Jackson (tiny change) + + * spam-stat.el (spam-stat-test-directory): Skip 0 length files. + +2003-05-01 Lars Magne Ingebrigtsen + * message.el (message-forward-subject-name-subject): Decode string when forwarding. diff --git a/lisp/gnus-vers.el b/lisp/gnus-vers.el index a82b0e3..cdd5bef 100644 --- a/lisp/gnus-vers.el +++ b/lisp/gnus-vers.el @@ -40,10 +40,10 @@ ;; Product information of this gnus. (product-provide 'gnus-vers (product-define "T-gnus" nil - (list 6 15 23 + (list 6 15 24 (string-to-number gnus-revision-number)))) -(defconst gnus-original-version-number "0.23" +(defconst gnus-original-version-number "0.24" "Version number for this version of Gnus.") (provide 'running-pterodactyl-gnus-0_73-or-later) diff --git a/lisp/spam-stat.el b/lisp/spam-stat.el index 4c9093f..96df016 100644 --- a/lisp/spam-stat.el +++ b/lisp/spam-stat.el @@ -504,7 +504,8 @@ check the variable `spam-stat-score-data'." (with-temp-buffer (dolist (f files) (when (and (file-readable-p f) - (file-regular-p f)) + (file-regular-p f) + (> (nth 7 (file-attributes f)) 0)) (setq count (1+ count)) (message "Reading %s: %.2f%%" dir (/ count max)) (insert-file-contents f) @@ -540,7 +541,8 @@ You can use this to determine error rates." (with-temp-buffer (dolist (f files) (when (and (file-readable-p f) - (file-regular-p f)) + (file-regular-p f) + (> (nth 7 (file-attributes f)) 0)) (setq count (1+ count)) (message "Reading %.2f%%, score %.2f%%" (/ count max) (/ score count))