diff options
author | Glenn Morris <rgm@gnu.org> | 2013-08-13 00:22:05 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-08-13 00:22:05 -0700 |
commit | ae3f0661b3baf53dec77c14b9b54530094f09904 (patch) | |
tree | 6be7234e47c1872a22b1b368488817797c340519 /lisp/gnus/gnus-icalendar.el | |
parent | af1c6c8493c84d7d5321b20ebd4a1c00bcfc2670 (diff) | |
download | emacs-ae3f0661b3baf53dec77c14b9b54530094f09904.tar.gz emacs-ae3f0661b3baf53dec77c14b9b54530094f09904.tar.bz2 emacs-ae3f0661b3baf53dec77c14b9b54530094f09904.zip |
* gnus/gnus-icalendar.el (gnus-icalendar-org-capture-file): Fix type.
Diffstat (limited to 'lisp/gnus/gnus-icalendar.el')
-rw-r--r-- | lisp/gnus/gnus-icalendar.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (defcustom gnus-icalendar-org-capture-file nil "Target Org file for storing captured calendar events." - :type 'file + :type '(choice (const nil) file) :group 'gnus-icalendar-org) (defcustom gnus-icalendar-org-capture-headline nil |