diff options
author | Robert Pluim <rpluim@gmail.com> | 2019-10-09 15:28:47 +0200 |
---|---|---|
committer | Robert Pluim <rpluim@gmail.com> | 2019-10-11 14:17:08 +0200 |
commit | de063da61beb076190104fa21ec69a3479d59647 (patch) | |
tree | cddc4a537327dd1135d3c1a563928d2d6610ac3b /lisp/image-dired.el | |
parent | b259bf63c77a01f3035813b3485fbd9ad7ae02a0 (diff) | |
download | emacs-de063da61beb076190104fa21ec69a3479d59647.tar.gz emacs-de063da61beb076190104fa21ec69a3479d59647.tar.bz2 emacs-de063da61beb076190104fa21ec69a3479d59647.zip |
Correct some more custom type specs
* lisp/winner.el (winner-boring-buffers-regexp):
* lisp/progmodes/js.el (js-jsx-indent-level):
* lisp/image-dired.el (image-dired-external-viewer):
* lisp/gnus/nnir.el (nnir-notmuch-filter-group-names-function):
Correct custom type specification.
* lisp/textmodes/bibtex.el (bibtex-string-file-path):
(bibtex-file-path): Correct custom type specification and document
source of initial value.
Diffstat (limited to 'lisp/image-dired.el')
-rw-r--r-- | lisp/image-dired.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el index c1c767ba783..85bc9247949 100644 --- a/lisp/image-dired.el +++ b/lisp/image-dired.el @@ -538,7 +538,9 @@ with the comment." "Name of external viewer. Including parameters. Used when displaying original image from `image-dired-thumbnail-mode'." - :type 'string + :version "27.1" + :type '(choice string + (const :tag "Not Set" nil)) :group 'image-dired) (defcustom image-dired-main-image-directory "~/pics/" |