Function: wallpaper--set-wallpaper-command
wallpaper--set-wallpaper-command is a byte-compiled function defined
in wallpaper.el.gz.
Signature
(wallpaper--set-wallpaper-command SYM VAL)
Documentation
Set wallpaper-command, and update wallpaper-command-args.
Used to set wallpaper-command.
Source Code
;; Defined in /usr/src/emacs/lisp/image/wallpaper.el.gz
(defvar wallpaper-command-args) ; silence byte-compiler
(defun wallpaper--set-wallpaper-command (sym val)
"Set `wallpaper-command', and update `wallpaper-command-args'.
Used to set `wallpaper-command'."
;; Note: `wallpaper-command' is used by `wallpaper--find-command-args'.
(prog1 (set-default sym val)
(set-default 'wallpaper-command-args
(wallpaper--find-command-args))))