diff options
| author | Bake Timmons | 2016-12-27 06:38:41 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2016-12-27 06:38:41 +0000 |
| commit | 49c9670535ecfb4ba4a4473862852ad80ad15abe (patch) | |
| tree | e6cfd2e477cdae67ec161560179f343fe2b988eb /lisp | |
| parent | 65b997b95e284e2edc1266663e39791f68d76ad7 (diff) | |
| download | emacs-49c9670535ecfb4ba4a4473862852ad80ad15abe.tar.gz emacs-49c9670535ecfb4ba4a4473862852ad80ad15abe.zip | |
Fix bug in customizing `mail-sources' variable (bug#25274)
* lisp/gnus/mail-source.el (mail-sources): Use list instead of cons
for lone argument. (bug#25274) (tiny change)
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/mail-source.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/mail-source.el b/lisp/gnus/mail-source.el index 59a97dbb8c6..8b7c8e08475 100644 --- a/lisp/gnus/mail-source.el +++ b/lisp/gnus/mail-source.el | |||
| @@ -66,7 +66,7 @@ See Info node `(gnus)Mail Source Specifiers'." | |||
| 66 | (repeat :tag "List" | 66 | (repeat :tag "List" |
| 67 | (choice :format "%[Value Menu%] %v" | 67 | (choice :format "%[Value Menu%] %v" |
| 68 | :value (file) | 68 | :value (file) |
| 69 | (cons :tag "Group parameter `mail-source'" | 69 | (list :tag "Group parameter `mail-source'" |
| 70 | (const :format "" group)) | 70 | (const :format "" group)) |
| 71 | (cons :tag "Spool file" | 71 | (cons :tag "Spool file" |
| 72 | (const :format "" file) | 72 | (const :format "" file) |