]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some custom types
authorGlenn Morris <rgm@gnu.org>
Tue, 13 Aug 2013 07:18:50 +0000 (00:18 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 13 Aug 2013 07:18:50 +0000 (00:18 -0700)
* 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.

lisp/ChangeLog
lisp/gnus/ChangeLog
lisp/gnus/gnus.el
lisp/gnus/nnimap.el
lisp/net/shr.el

index 0c0c3911cfd5d679bc5b5faba8abde0ddfab10dc..7951188bbaf82210ba56b1614929a07f966df100 100644 (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.
index 4fcf078e9d6a7555e29ad90f46b835817d6de1cc..e8fa026fc607ffe92716c6e3cf4732a2ab5f9723 100644 (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
index 409b1cc62552781e00579ad87c132f533ca74bd9..266ee0fe7cb3135ccd8f19c01d77bc41b8b5c67f 100644 (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)
index 4d9320b995f5236b3b09caa7c9fe93383b0bda37..f8c2b24cc9f860d6608ba6573575d7c6fe790576 100644 (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)
index 7eda2554e06fe9ba9041a1492c36a7ca05aa58fb..bc4542923607f41ce9c4f7ec35ba2e95af8909ba 100644 (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."