diff options
| author | Miles Bader | 2008-02-24 06:09:16 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-02-24 06:09:16 +0000 |
| commit | 20ca5ee4f7d897d79416a6fdd084db1eabb392b0 (patch) | |
| tree | 52df368164431b63788cd3904b5eafdda3cf7fce | |
| parent | d7c5579129bfc058131c46e252ffd98791776af8 (diff) | |
| download | emacs-20ca5ee4f7d897d79416a6fdd084db1eabb392b0.tar.gz emacs-20ca5ee4f7d897d79416a6fdd084db1eabb392b0.zip | |
Merge from gnus--rel--5.10
Revision: emacs@sv.gnu.org/emacs--rel--22--patch-232
| -rw-r--r-- | lisp/gnus/ChangeLog | 17 | ||||
| -rw-r--r-- | lisp/gnus/gnus-group.el | 13 | ||||
| -rw-r--r-- | lisp/gnus/gnus-topic.el | 18 | ||||
| -rw-r--r-- | lisp/gnus/mail-source.el | 19 | ||||
| -rw-r--r-- | lisp/gnus/nnmail.el | 5 |
5 files changed, 53 insertions, 19 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index cd3c128c05d..870b598ff74 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2008-02-16 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 2 | |||
| 3 | * mail-source.el (mail-source-delete-incoming): Change default. | ||
| 4 | Supplement doc string. | ||
| 5 | |||
| 6 | 2008-02-14 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 7 | |||
| 8 | * nnmail.el (nnmail-message-id-cache-file): Derive from | ||
| 9 | `gnus-home-directory'. | ||
| 10 | |||
| 11 | 2008-02-11 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 12 | |||
| 13 | * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group): | ||
| 14 | Document negativ prefix. | ||
| 15 | |||
| 16 | * gnus-group.el (gnus-group-read-group): Document negativ prefix. | ||
| 17 | |||
| 1 | 2008-02-03 Reiner Steib <Reiner.Steib@gmx.de> | 18 | 2008-02-03 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 19 | ||
| 3 | * gnus.el (gnus-group-startup-message): Add `find-image' call before | 20 | * gnus.el (gnus-group-startup-message): Add `find-image' call before |
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index c671bcd997c..28cda1a99a6 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -2008,10 +2008,15 @@ and with point over the group in question." | |||
| 2008 | (defun gnus-group-read-group (&optional all no-article group select-articles) | 2008 | (defun gnus-group-read-group (&optional all no-article group select-articles) |
| 2009 | "Read news in this newsgroup. | 2009 | "Read news in this newsgroup. |
| 2010 | If the prefix argument ALL is non-nil, already read articles become | 2010 | If the prefix argument ALL is non-nil, already read articles become |
| 2011 | readable. IF ALL is a number, fetch this number of articles. If the | 2011 | readable. |
| 2012 | optional argument NO-ARTICLE is non-nil, no article will be | 2012 | |
| 2013 | auto-selected upon group entry. If GROUP is non-nil, fetch that | 2013 | If ALL is a positive number, fetch this number of the latest |
| 2014 | group." | 2014 | articles in the group. If ALL is a negative number, fetch this |
| 2015 | number of the earliest articles in the group. | ||
| 2016 | |||
| 2017 | If the optional argument NO-ARTICLE is non-nil, no article will | ||
| 2018 | be auto-selected upon group entry. If GROUP is non-nil, fetch | ||
| 2019 | that group." | ||
| 2015 | (interactive "P") | 2020 | (interactive "P") |
| 2016 | (let ((no-display (eq all 0)) | 2021 | (let ((no-display (eq all 0)) |
| 2017 | (group (or group (gnus-group-group-name))) | 2022 | (group (or group (gnus-group-group-name))) |
diff --git a/lisp/gnus/gnus-topic.el b/lisp/gnus/gnus-topic.el index 4d264c3b7d0..e2f85622630 100644 --- a/lisp/gnus/gnus-topic.el +++ b/lisp/gnus/gnus-topic.el | |||
| @@ -1181,7 +1181,10 @@ articles in the topic and its subtopics." | |||
| 1181 | No article is selected automatically. | 1181 | No article is selected automatically. |
| 1182 | If the group is opened, just switch the summary buffer. | 1182 | If the group is opened, just switch the summary buffer. |
| 1183 | If ALL is non-nil, already read articles become readable. | 1183 | If ALL is non-nil, already read articles become readable. |
| 1184 | If ALL is a number, fetch this number of articles. | 1184 | |
| 1185 | If ALL is a positive number, fetch this number of the latest | ||
| 1186 | articles in the group. If ALL is a negative number, fetch this | ||
| 1187 | number of the earliest articles in the group. | ||
| 1185 | 1188 | ||
| 1186 | If performed over a topic line, toggle folding the topic." | 1189 | If performed over a topic line, toggle folding the topic." |
| 1187 | (interactive "P") | 1190 | (interactive "P") |
| @@ -1233,10 +1236,15 @@ Also see `gnus-group-catchup'." | |||
| 1233 | (defun gnus-topic-read-group (&optional all no-article group) | 1236 | (defun gnus-topic-read-group (&optional all no-article group) |
| 1234 | "Read news in this newsgroup. | 1237 | "Read news in this newsgroup. |
| 1235 | If the prefix argument ALL is non-nil, already read articles become | 1238 | If the prefix argument ALL is non-nil, already read articles become |
| 1236 | readable. IF ALL is a number, fetch this number of articles. If the | 1239 | readable. |
| 1237 | optional argument NO-ARTICLE is non-nil, no article will be | 1240 | |
| 1238 | auto-selected upon group entry. If GROUP is non-nil, fetch that | 1241 | If ALL is a positive number, fetch this number of the latest |
| 1239 | group. | 1242 | articles in the group. If ALL is a negative number, fetch this |
| 1243 | number of the earliest articles in the group. | ||
| 1244 | |||
| 1245 | If the optional argument NO-ARTICLE is non-nil, no article will | ||
| 1246 | be auto-selected upon group entry. If GROUP is non-nil, fetch | ||
| 1247 | that group. | ||
| 1240 | 1248 | ||
| 1241 | If performed over a topic line, toggle folding the topic." | 1249 | If performed over a topic line, toggle folding the topic." |
| 1242 | (interactive "P") | 1250 | (interactive "P") |
diff --git a/lisp/gnus/mail-source.el b/lisp/gnus/mail-source.el index e5d4618d0a1..4082f6761f1 100644 --- a/lisp/gnus/mail-source.el +++ b/lisp/gnus/mail-source.el | |||
| @@ -269,16 +269,19 @@ If non-nil, this maildrop will be checked periodically for new mail." | |||
| 269 | :group 'mail-source | 269 | :group 'mail-source |
| 270 | :type 'integer) | 270 | :type 'integer) |
| 271 | 271 | ||
| 272 | (defcustom mail-source-delete-incoming t | 272 | (defcustom mail-source-delete-incoming |
| 273 | "*If non-nil, delete incoming files after handling. | 273 | ;; 10 ;; development versions |
| 274 | 2 ;; released versions | ||
| 275 | "If non-nil, delete incoming files after handling. | ||
| 274 | If t, delete immediately, if nil, never delete. If a positive number, delete | 276 | If t, delete immediately, if nil, never delete. If a positive number, delete |
| 275 | files older than number of days." | 277 | files older than number of days. |
| 276 | ;; Note: The removing happens in `mail-source-callback', i.e. no old | 278 | |
| 277 | ;; incoming files will be deleted, unless you receive new mail. | 279 | Removing of old files happens in `mail-source-callback', i.e. no |
| 278 | ;; | 280 | old incoming files will be deleted unless you receive new mail. |
| 279 | ;; You may also set this to `nil' and call `mail-source-delete-old-incoming' | 281 | You may also set this variable to nil and call |
| 280 | ;; from a hook or interactively. | 282 | `mail-source-delete-old-incoming' interactively." |
| 281 | :group 'mail-source | 283 | :group 'mail-source |
| 284 | :version "22.2" ;; No Gnus / Gnus 5.10.10 (default changed) | ||
| 282 | :type '(choice (const :tag "immediately" t) | 285 | :type '(choice (const :tag "immediately" t) |
| 283 | (const :tag "never" nil) | 286 | (const :tag "never" nil) |
| 284 | (integer :tag "days"))) | 287 | (integer :tag "days"))) |
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el index 74d4e30ab80..9e46e4a3167 100644 --- a/lisp/gnus/nnmail.el +++ b/lisp/gnus/nnmail.el | |||
| @@ -532,8 +532,9 @@ performed." | |||
| 532 | :type '(choice (const :tag "disable" nil) | 532 | :type '(choice (const :tag "disable" nil) |
| 533 | (integer :format "%v"))) | 533 | (integer :format "%v"))) |
| 534 | 534 | ||
| 535 | (defcustom nnmail-message-id-cache-file "~/.nnmail-cache" | 535 | (defcustom nnmail-message-id-cache-file |
| 536 | "*The file name of the nnmail Message-ID cache." | 536 | (nnheader-concat gnus-home-directory ".nnmail-cache") |
| 537 | "The file name of the nnmail Message-ID cache." | ||
| 537 | :group 'nnmail-duplicate | 538 | :group 'nnmail-duplicate |
| 538 | :group 'nnmail-files | 539 | :group 'nnmail-files |
| 539 | :type 'file) | 540 | :type 'file) |