Fix some custom types

* gnus/gnus.el (gnus-valid-select-methods): Fix type.

* gnus/nnimap.el (nnimap-request-articles-find-limit): Fix type, version.

* net/shr.el (shr-table-horizontal-line): Fix custom type.
This commit is contained in:
Glenn Morris 2013-08-13 00:18:50 -07:00
parent 3e6b67c9b7
commit af1c6c8493
5 changed files with 14 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2013-08-13 Glenn Morris <rgm@gnu.org>
* net/shr.el (shr-table-horizontal-line): Fix custom type.
2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/timer.el (timer--time-setter): New function.

View file

@ -1,3 +1,9 @@
2013-08-13 Glenn Morris <rgm@gnu.org>
* gnus.el (gnus-valid-select-methods): Fix type.
* nnimap.el (nnimap-request-articles-find-limit): Fix type, version.
2013-08-12 Katsumi Yamaoka <yamaoka@jpl.org>
* mm-decode.el (mm-display-external): Run a timer for the temp files

View file

@ -1649,6 +1649,7 @@ this variable. I think."
(const post-mail))
(checklist :inline t :greedy t
(const :format "%v " address)
(const global)
(const :format "%v " prompt-address)
(const :format "%v " physical-address)
(const virtual)

View file

@ -130,8 +130,8 @@ textual parts.")
(defcustom nnimap-request-articles-find-limit nil
"Limit the number of articles to look for after moving an article."
:type 'integer
:version "24.3"
:type '(choice (const nil) integer)
:version "24.4"
:group 'nnimap)
(defvar nnimap-process nil)

View file

@ -59,7 +59,7 @@ fit these criteria."
"Character used to draw horizontal table lines.
If nil, don't draw horizontal table lines."
:group 'shr
:type 'character)
:type '(choice (const nil) character))
(defcustom shr-table-vertical-line ?\s
"Character used to draw vertical table lines."