diff options
| author | Joakim Verona | 2013-08-13 09:37:29 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-08-13 09:37:29 +0200 |
| commit | 7f502f7b6fc418af15408709cad4dc3dda8db583 (patch) | |
| tree | 99acc176696926381f261434c067c2afa7bd5bdd | |
| parent | 0b4c71fb6ca9382bee1dfa6996b7a5d67f469880 (diff) | |
| parent | ae3f0661b3baf53dec77c14b9b54530094f09904 (diff) | |
| download | emacs-7f502f7b6fc418af15408709cad4dc3dda8db583.tar.gz emacs-7f502f7b6fc418af15408709cad4dc3dda8db583.zip | |
merge from trunk
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/gnus/gnus-icalendar.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus.el | 1 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 4 | ||||
| -rw-r--r-- | lisp/net/shr.el | 2 |
6 files changed, 17 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0c0c3911cfd..7951188bbaf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-08-13 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * net/shr.el (shr-table-horizontal-line): Fix custom type. | ||
| 4 | |||
| 1 | 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * emacs-lisp/timer.el (timer--time-setter): New function. | 7 | * emacs-lisp/timer.el (timer--time-setter): New function. |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 4fcf078e9d6..bc56d942191 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2013-08-13 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * gnus-icalendar.el (gnus-icalendar-org-capture-file): Fix type. | ||
| 4 | |||
| 5 | * gnus.el (gnus-valid-select-methods): Fix type. | ||
| 6 | |||
| 7 | * nnimap.el (nnimap-request-articles-find-limit): Fix type, version. | ||
| 8 | |||
| 1 | 2013-08-12 Katsumi Yamaoka <yamaoka@jpl.org> | 9 | 2013-08-12 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 10 | ||
| 3 | * mm-decode.el (mm-display-external): Run a timer for the temp files | 11 | * mm-decode.el (mm-display-external): Run a timer for the temp files |
diff --git a/lisp/gnus/gnus-icalendar.el b/lisp/gnus/gnus-icalendar.el index 3a9e743e8ed..a946a586033 100644 --- a/lisp/gnus/gnus-icalendar.el +++ b/lisp/gnus/gnus-icalendar.el | |||
| @@ -323,7 +323,7 @@ on the IDENTITIES list." | |||
| 323 | 323 | ||
| 324 | (defcustom gnus-icalendar-org-capture-file nil | 324 | (defcustom gnus-icalendar-org-capture-file nil |
| 325 | "Target Org file for storing captured calendar events." | 325 | "Target Org file for storing captured calendar events." |
| 326 | :type 'file | 326 | :type '(choice (const nil) file) |
| 327 | :group 'gnus-icalendar-org) | 327 | :group 'gnus-icalendar-org) |
| 328 | 328 | ||
| 329 | (defcustom gnus-icalendar-org-capture-headline nil | 329 | (defcustom gnus-icalendar-org-capture-headline nil |
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 409b1cc6255..266ee0fe7cb 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el | |||
| @@ -1649,6 +1649,7 @@ this variable. I think." | |||
| 1649 | (const post-mail)) | 1649 | (const post-mail)) |
| 1650 | (checklist :inline t :greedy t | 1650 | (checklist :inline t :greedy t |
| 1651 | (const :format "%v " address) | 1651 | (const :format "%v " address) |
| 1652 | (const global) | ||
| 1652 | (const :format "%v " prompt-address) | 1653 | (const :format "%v " prompt-address) |
| 1653 | (const :format "%v " physical-address) | 1654 | (const :format "%v " physical-address) |
| 1654 | (const virtual) | 1655 | (const virtual) |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 4d9320b995f..f8c2b24cc9f 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -130,8 +130,8 @@ textual parts.") | |||
| 130 | 130 | ||
| 131 | (defcustom nnimap-request-articles-find-limit nil | 131 | (defcustom nnimap-request-articles-find-limit nil |
| 132 | "Limit the number of articles to look for after moving an article." | 132 | "Limit the number of articles to look for after moving an article." |
| 133 | :type 'integer | 133 | :type '(choice (const nil) integer) |
| 134 | :version "24.3" | 134 | :version "24.4" |
| 135 | :group 'nnimap) | 135 | :group 'nnimap) |
| 136 | 136 | ||
| 137 | (defvar nnimap-process nil) | 137 | (defvar nnimap-process nil) |
diff --git a/lisp/net/shr.el b/lisp/net/shr.el index 7eda2554e06..bc454292360 100644 --- a/lisp/net/shr.el +++ b/lisp/net/shr.el | |||
| @@ -59,7 +59,7 @@ fit these criteria." | |||
| 59 | "Character used to draw horizontal table lines. | 59 | "Character used to draw horizontal table lines. |
| 60 | If nil, don't draw horizontal table lines." | 60 | If nil, don't draw horizontal table lines." |
| 61 | :group 'shr | 61 | :group 'shr |
| 62 | :type 'character) | 62 | :type '(choice (const nil) character)) |
| 63 | 63 | ||
| 64 | (defcustom shr-table-vertical-line ?\s | 64 | (defcustom shr-table-vertical-line ?\s |
| 65 | "Character used to draw vertical table lines." | 65 | "Character used to draw vertical table lines." |