Include nil as valid wallpaper-commmand

* lisp/image/wallpaper.el (wallpaper-command):
Include nil in the type since that is a valid value for the variable,
and may be the default value.  This should fix test-custom-opts.
This commit is contained in:
Mattias Engdegård 2022-09-15 21:59:16 +02:00
parent a057d41c75
commit bfc4393040

View file

@ -167,7 +167,8 @@ systems, where a native API is used instead."
(const :tag "xloadimage (X Window System)" "xloadimage")
(const :tag "xsetbg (X Window System)" "xsetbg")
(const :tag "osascript (macOS)" "osascript"))
(const :tag "Other (specify)" string))
(const :tag "Other (specify)" string)
(const :tag "None" nil))
:set #'wallpaper--set-wallpaper-command
:group 'image
:version "29.1")