diff options
| author | Katsumi Yamaoka | 2012-07-31 01:39:58 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2012-07-31 01:39:58 +0000 |
| commit | 4650d5fa0e1eeb1bcd504fdf5025db3ed146f710 (patch) | |
| tree | 5cb08307971ef5120ab5cb68722fa67d533e262b | |
| parent | 6a3818523e869b548797cc855cfc4abe8dc7f69c (diff) | |
| download | emacs-4650d5fa0e1eeb1bcd504fdf5025db3ed146f710.tar.gz emacs-4650d5fa0e1eeb1bcd504fdf5025db3ed146f710.zip | |
gnus.el (gnus-valid-select-methods): Fix custom type
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus.el | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index b123b77273e..d7bedfb3260 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-07-31 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus.el (gnus-valid-select-methods): Fix custom type. | ||
| 4 | |||
| 1 | 2012-07-29 Teodor Zlatanov <tzz@lifelogs.com> | 5 | 2012-07-29 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 6 | ||
| 3 | * auth-source.el (auth-sources, auth-source-backend-parse) | 7 | * auth-source.el (auth-sources, auth-source-backend-parse) |
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index e48fa385284..5862e7807a2 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el | |||
| @@ -1647,12 +1647,13 @@ this variable. I think." | |||
| 1647 | (const :format "%v " mail) | 1647 | (const :format "%v " mail) |
| 1648 | (const :format "%v " none) | 1648 | (const :format "%v " none) |
| 1649 | (const post-mail)) | 1649 | (const post-mail)) |
| 1650 | (checklist :inline t | 1650 | (checklist :inline t :greedy t |
| 1651 | (const :format "%v " address) | 1651 | (const :format "%v " address) |
| 1652 | (const :format "%v " prompt-address) | 1652 | (const :format "%v " prompt-address) |
| 1653 | (const :format "%v " physical-address) | 1653 | (const :format "%v " physical-address) |
| 1654 | (const :format "%v " virtual) | 1654 | (const virtual) |
| 1655 | (const respool)))) | 1655 | (const :format "%v " respool) |
| 1656 | (const server-marks)))) | ||
| 1656 | :version "24.1") | 1657 | :version "24.1") |
| 1657 | 1658 | ||
| 1658 | (defun gnus-redefine-select-method-widget () | 1659 | (defun gnus-redefine-select-method-widget () |