; * lisp/dired-aux.el (shell-command-guess-open): Fix :type (bug#74720).

This commit is contained in:
Eli Zaretskii 2024-12-07 06:50:27 -05:00
parent d185d90190
commit d84c5c24b5

View file

@ -1440,7 +1440,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")