mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
; minibuffer-default-add-shell-commands: Use 'and' not 'unless'.
This commit is contained in:
parent
48ef7d91b1
commit
fd16fcce52
1 changed files with 2 additions and 2 deletions
|
|
@ -4317,7 +4317,7 @@ stdout will be intermixed in the output stream.")
|
|||
This function is used to add all related commands retrieved by
|
||||
`shell-command-guess' to the end of the list of defaults just
|
||||
after the default value."
|
||||
(let* ((filename (unless (consp minibuffer-default)
|
||||
(let* ((filename (and (atom minibuffer-default)
|
||||
minibuffer-default))
|
||||
(commands (and filename (require 'dired-aux)
|
||||
(shell-command-guess (list filename)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue