From: Eli Zaretskii Date: Sat, 7 Dec 2024 11:50:27 +0000 (-0500) Subject: ; * lisp/dired-aux.el (shell-command-guess-open): Fix :type (bug#74720). X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aff9d77c0047d5efae770dd8b54c74290c88a0eb;p=emacs.git ; * lisp/dired-aux.el (shell-command-guess-open): Fix :type (bug#74720). (cherry picked from commit d84c5c24b58b124f79b2a61e58e46c501d8ec52a) --- diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 703ab553c68..11903a97b53 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -1429,7 +1429,7 @@ This excludes `dired-guess-shell-alist-user' and ((executable-find "run-mailcap") "run-mailcap")) "A shell command to open a file externally." - :type 'string + :type '(choice (const :tag "None" nil) string) :group 'dired :version "30.1")