[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 5e377f4fcc0: Make `dired-do-open' work on more *nix systems
From: |
Juri Linkov |
Subject: |
master 5e377f4fcc0: Make `dired-do-open' work on more *nix systems |
Date: |
Wed, 18 Sep 2024 12:53:19 -0400 (EDT) |
branch: master
commit 5e377f4fcc0626065f930f68cff7a11f31c40ffe
Author: Manuel Giraud <manuel@ledu-giraud.fr>
Commit: Juri Linkov <juri@linkov.net>
Make `dired-do-open' work on more *nix systems
* lisp/dired-aux.el (dired-do-open): Make `dired-do-open' work
on more *nix systems (bug#73004).
---
lisp/dired-aux.el | 29 ++++++++++++++---------------
1 file changed, 14 insertions(+), 15 deletions(-)
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index cd948bd7dd9..1d0e29b8782 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -1469,21 +1469,20 @@ system is determined by `shell-command-guess-open'."
(when (and (memq system-type '(windows-nt))
(equal command "start"))
(setq command "open"))
- (when command
- (dolist (file files)
- (cond
- ((memq system-type '(gnu/linux))
- (call-process command nil 0 nil file))
- ((memq system-type '(ms-dos))
- (shell-command (concat command " " (shell-quote-argument file))))
- ((memq system-type '(windows-nt))
- (w32-shell-execute command (convert-standard-filename file)))
- ((memq system-type '(cygwin))
- (call-process command nil nil nil file))
- ((memq system-type '(darwin))
- (start-process (concat command " " file) nil command file))
- (t
- (error "Open not supported on this system")))))))
+ (if command
+ (dolist (file files)
+ (cond
+ ((memq system-type '(ms-dos))
+ (shell-command (concat command " " (shell-quote-argument file))))
+ ((memq system-type '(windows-nt))
+ (w32-shell-execute command (convert-standard-filename file)))
+ ((memq system-type '(cygwin))
+ (call-process command nil nil nil file))
+ ((memq system-type '(darwin))
+ (start-process (concat command " " file) nil command file))
+ (t
+ (call-process command nil 0 nil file))))
+ (error "Open not supported on this system"))))
;;; Commands that delete or redisplay part of the dired buffer
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 5e377f4fcc0: Make `dired-do-open' work on more *nix systems,
Juri Linkov <=