diff options
| author | Miles Bader | 2004-12-14 07:29:36 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-12-14 07:29:36 +0000 |
| commit | 734c576596678065b39591128d88609bc6fc5aad (patch) | |
| tree | cc021c93f9dde49828b67ba13408066fd1fcda51 | |
| parent | 0c6d98d8df2135f853de99986ea905a638a6157d (diff) | |
| download | emacs-734c576596678065b39591128d88609bc6fc5aad.tar.gz emacs-734c576596678065b39591128d88609bc6fc5aad.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-734
Merge from gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-75
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-76
- miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-77
Update from CVS
2004-12-13 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/gnus/gnus-group.el (gnus-group-make-rss-group): Use
gnus-group-make-group instead of gnus-group-unsubscribe-group.
* lisp/gnus/gnus-start.el (gnus-setup-news): Honor user's setting to
gnus-message-archive-method. Suggested by Lute Kamstra
<Lute.Kamstra@xs4all.nl>.
2004-12-08 Reiner Steib <Reiner.Steib@gmx.de>
* man/gnus-faq.texi ([5.1]): Added missing bracket.
* man/gnus.texi (Filtering Spam Using The Spam ELisp Package): Index
`spam-initialize'.
| -rw-r--r-- | lisp/gnus/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/gnus/gnus-group.el | 3 | ||||
| -rw-r--r-- | lisp/gnus/gnus-start.el | 32 | ||||
| -rw-r--r-- | man/ChangeLog | 12 | ||||
| -rw-r--r-- | man/gnus-faq.texi | 2 |
5 files changed, 40 insertions, 18 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 47945169a52..518a9903085 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -2,6 +2,15 @@ | |||
| 2 | 2 | ||
| 3 | * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min. | 3 | * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min. |
| 4 | 4 | ||
| 5 | 2004-12-13 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 6 | |||
| 7 | * gnus-group.el (gnus-group-make-rss-group): Use | ||
| 8 | gnus-group-make-group instead of gnus-group-unsubscribe-group. | ||
| 9 | |||
| 10 | * gnus-start.el (gnus-setup-news): Honor user's setting to | ||
| 11 | gnus-message-archive-method. Suggested by Lute Kamstra | ||
| 12 | <Lute.Kamstra@xs4all.nl>. | ||
| 13 | |||
| 5 | 2004-12-02 Katsumi Yamaoka <yamaoka@jpl.org> | 14 | 2004-12-02 Katsumi Yamaoka <yamaoka@jpl.org> |
| 6 | 15 | ||
| 7 | * message.el (message-forward-make-body-mml): Remove headers | 16 | * message.el (message-forward-make-body-mml): Remove headers |
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index c55264b22de..b7d0cf9eef4 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -2592,8 +2592,7 @@ If there is, use Gnus to create an nnrss group" | |||
| 2592 | (href (cdr (assoc 'href feedinfo)))) | 2592 | (href (cdr (assoc 'href feedinfo)))) |
| 2593 | (push (list title href desc) | 2593 | (push (list title href desc) |
| 2594 | nnrss-group-alist) | 2594 | nnrss-group-alist) |
| 2595 | (gnus-group-unsubscribe-group | 2595 | (gnus-group-make-group title '(nnrss "")) |
| 2596 | (concat "nnrss:" title)) | ||
| 2597 | (nnrss-save-server-data nil)) | 2596 | (nnrss-save-server-data nil)) |
| 2598 | (error "No feeds found for %s" url)))) | 2597 | (error "No feeds found for %s" url)))) |
| 2599 | 2598 | ||
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el index 17b0f1d687d..e1985c5db5d 100644 --- a/lisp/gnus/gnus-start.el +++ b/lisp/gnus/gnus-start.el | |||
| @@ -952,16 +952,28 @@ If LEVEL is non-nil, the news will be set up at level LEVEL." | |||
| 952 | ;; Make sure the archive server is available to all and sundry. | 952 | ;; Make sure the archive server is available to all and sundry. |
| 953 | (when gnus-message-archive-method | 953 | (when gnus-message-archive-method |
| 954 | (unless (assoc "archive" gnus-server-alist) | 954 | (unless (assoc "archive" gnus-server-alist) |
| 955 | (push `("archive" | 955 | (let ((method (or (and (stringp gnus-message-archive-method) |
| 956 | nnfolder | 956 | (gnus-server-to-method |
| 957 | "archive" | 957 | gnus-message-archive-method)) |
| 958 | (nnfolder-directory | 958 | gnus-message-archive-method))) |
| 959 | ,(nnheader-concat message-directory "archive")) | 959 | ;; Check whether the archive method is writable. |
| 960 | (nnfolder-active-file | 960 | (unless (or (stringp method) |
| 961 | ,(nnheader-concat message-directory "archive/active")) | 961 | (memq 'respool (assoc (format "%s" (car method)) |
| 962 | (nnfolder-get-new-mail nil) | 962 | gnus-valid-select-methods))) |
| 963 | (nnfolder-inhibit-expiry t)) | 963 | (setq method "archive")) ;; The default. |
| 964 | gnus-server-alist))) | 964 | (push (if (stringp method) |
| 965 | `("archive" | ||
| 966 | nnfolder | ||
| 967 | ,method | ||
| 968 | (nnfolder-directory | ||
| 969 | ,(nnheader-concat message-directory method)) | ||
| 970 | (nnfolder-active-file | ||
| 971 | ,(nnheader-concat message-directory | ||
| 972 | (concat method "/active"))) | ||
| 973 | (nnfolder-get-new-mail nil) | ||
| 974 | (nnfolder-inhibit-expiry t)) | ||
| 975 | (cons "archive" method)) | ||
| 976 | gnus-server-alist)))) | ||
| 965 | 977 | ||
| 966 | ;; If we don't read the complete active file, we fill in the | 978 | ;; If we don't read the complete active file, we fill in the |
| 967 | ;; hashtb here. | 979 | ;; hashtb here. |
diff --git a/man/ChangeLog b/man/ChangeLog index 2f1216bd71b..b251dc8e912 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -150,6 +150,13 @@ | |||
| 150 | to Alex Ott, Karl Fogel, Stefan Monnier, and David Kastrup for | 150 | to Alex Ott, Karl Fogel, Stefan Monnier, and David Kastrup for |
| 151 | suggestions. | 151 | suggestions. |
| 152 | 152 | ||
| 153 | 2004-12-08 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 154 | |||
| 155 | * gnus-faq.texi ([5.1]): Added missing bracket. | ||
| 156 | |||
| 157 | * gnus.texi (Filtering Spam Using The Spam ELisp Package): Index | ||
| 158 | `spam-initialize'. | ||
| 159 | |||
| 153 | 2004-11-22 Reiner Steib <Reiner.Steib@gmx.de> | 160 | 2004-11-22 Reiner Steib <Reiner.Steib@gmx.de> |
| 154 | 161 | ||
| 155 | * message.texi (Various Message Variables): Mention that all mail | 162 | * message.texi (Various Message Variables): Mention that all mail |
| @@ -157,11 +164,6 @@ | |||
| 157 | 164 | ||
| 158 | * gnus.texi (Splitting Mail): Clarify bogus group. | 165 | * gnus.texi (Splitting Mail): Clarify bogus group. |
| 159 | 166 | ||
| 160 | 2004-11-16 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 161 | |||
| 162 | * gnus.texi (Filtering Spam Using The Spam ELisp Package): Index | ||
| 163 | `spam-initialize'. | ||
| 164 | |||
| 165 | 2004-11-02 Katsumi Yamaoka <yamaoka@jpl.org> | 167 | 2004-11-02 Katsumi Yamaoka <yamaoka@jpl.org> |
| 166 | 168 | ||
| 167 | * emacs-mime.texi (Encoding Customization): Fix | 169 | * emacs-mime.texi (Encoding Customization): Fix |
diff --git a/man/gnus-faq.texi b/man/gnus-faq.texi index 5d243f8a02e..280280a401e 100644 --- a/man/gnus-faq.texi +++ b/man/gnus-faq.texi | |||
| @@ -1414,7 +1414,7 @@ Answer: | |||
| 1414 | message. For a follow up to a newsgroup, it's | 1414 | message. For a follow up to a newsgroup, it's |
| 1415 | @samp{f} and @samp{F} | 1415 | @samp{f} and @samp{F} |
| 1416 | (analog to @samp{r} and | 1416 | (analog to @samp{r} and |
| 1417 | @samp{R}. | 1417 | @samp{R}). |
| 1418 | 1418 | ||
| 1419 | 1419 | ||
| 1420 | Enter new headers above the line saying "--text follows | 1420 | Enter new headers above the line saying "--text follows |