aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/gnus/ChangeLog8
-rw-r--r--lisp/gnus/gnus-icalendar.el2
-rw-r--r--lisp/gnus/gnus.el1
-rw-r--r--lisp/gnus/nnimap.el4
-rw-r--r--lisp/net/shr.el2
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 @@
12013-08-13 Glenn Morris <rgm@gnu.org>
2
3 * net/shr.el (shr-table-horizontal-line): Fix custom type.
4
12013-08-13 Stefan Monnier <monnier@iro.umontreal.ca> 52013-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 @@
12013-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
12013-08-12 Katsumi Yamaoka <yamaoka@jpl.org> 92013-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.
60If nil, don't draw horizontal table lines." 60If 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."