diff options
| author | Miles Bader | 2007-01-24 07:13:07 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-01-24 07:13:07 +0000 |
| commit | b28080e33a9255254cfb7f6772704387202d9a8a (patch) | |
| tree | 07e568043baffe16da44a60007c4aff49537dd28 | |
| parent | 53688138bcbaefa0c702e3b4bcc2c5ae95431450 (diff) | |
| download | emacs-b28080e33a9255254cfb7f6772704387202d9a8a.tar.gz emacs-b28080e33a9255254cfb7f6772704387202d9a8a.zip | |
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 196)
- Update from CVS
2007-01-23 Reiner Steib <Reiner.Steib@gmx.de>
* lisp/gnus/gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
custom choice.
* lisp/gnus/gnus-art.el (gnus-signature-limit): Fix custom choice.
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-612
| -rw-r--r-- | lisp/gnus/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus-score.el | 8 |
3 files changed, 12 insertions, 5 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 7dc3133b632..7197ca2705f 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2007-01-23 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 2 | |||
| 3 | * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix | ||
| 4 | custom choice. | ||
| 5 | |||
| 6 | * gnus-art.el (gnus-signature-limit): Fix custom choice. | ||
| 7 | |||
| 1 | 2007-01-19 Reiner Steib <Reiner.Steib@gmx.de> | 8 | 2007-01-19 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 9 | ||
| 3 | * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory): | 10 | * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory): |
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index c3d41d6fb66..e757406f00d 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -242,7 +242,7 @@ regexp. If it matches, the text in question is not a signature." | |||
| 242 | :type '(choice (const nil) | 242 | :type '(choice (const nil) |
| 243 | (integer :value 200) | 243 | (integer :value 200) |
| 244 | (number :value 4.0) | 244 | (number :value 4.0) |
| 245 | (function :value fun) | 245 | function |
| 246 | (regexp :value ".*")) | 246 | (regexp :value ".*")) |
| 247 | :group 'gnus-article-signature) | 247 | :group 'gnus-article-signature) |
| 248 | 248 | ||
diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el index b658cde1df3..fd8fedd2011 100644 --- a/lisp/gnus/gnus-score.el +++ b/lisp/gnus/gnus-score.el | |||
| @@ -204,10 +204,10 @@ It can be: | |||
| 204 | :type '(choice string | 204 | :type '(choice string |
| 205 | (repeat (choice string | 205 | (repeat (choice string |
| 206 | (cons regexp (repeat file)) | 206 | (cons regexp (repeat file)) |
| 207 | (function :value fun))) | 207 | function)) |
| 208 | (function-item gnus-hierarchial-home-score-file) | 208 | (function-item gnus-hierarchial-home-score-file) |
| 209 | (function-item gnus-current-home-score-file) | 209 | (function-item gnus-current-home-score-file) |
| 210 | (function :value fun))) | 210 | function)) |
| 211 | 211 | ||
| 212 | (defcustom gnus-home-adapt-file nil | 212 | (defcustom gnus-home-adapt-file nil |
| 213 | "Variable to control where new adaptive score entries are to go. | 213 | "Variable to control where new adaptive score entries are to go. |
| @@ -217,8 +217,8 @@ This variable allows the same syntax as `gnus-home-score-file'." | |||
| 217 | :type '(choice string | 217 | :type '(choice string |
| 218 | (repeat (choice string | 218 | (repeat (choice string |
| 219 | (cons regexp (repeat file)) | 219 | (cons regexp (repeat file)) |
| 220 | (function :value fun))) | 220 | function)) |
| 221 | (function :value fun))) | 221 | function)) |
| 222 | 222 | ||
| 223 | (defcustom gnus-default-adaptive-score-alist | 223 | (defcustom gnus-default-adaptive-score-alist |
| 224 | `((gnus-kill-file-mark) | 224 | `((gnus-kill-file-mark) |