]> git.eshelyaron.com Git - emacs.git/commitdiff
Include nil as valid wallpaper-commmand
authorMattias Engdegård <mattiase@acm.org>
Thu, 15 Sep 2022 19:59:16 +0000 (21:59 +0200)
committerMattias Engdegård <mattiase@acm.org>
Thu, 15 Sep 2022 20:04:26 +0000 (22:04 +0200)
* 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.

lisp/image/wallpaper.el

index 16fc9d23ecb2d14f56c3bbeb00ee480ac3d4445f..9572349c366b671a013526602514287c53fa9d0b 100644 (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")