From ab26a89395b5745c8e3d87a8907344ba774a5ca1 Mon Sep 17 00:00:00 2001 From: Manuel Giraud Date: Tue, 3 Sep 2024 15:13:51 +0200 Subject: [PATCH] Make `dired-do-open' work on non GNU/Linux systems * lisp/dired-aux.el (dired-do-open): Permit this function to work on some non GNU/Linux systems. --- lisp/dired-aux.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index cd948bd7dd9..97b1e28a4ff 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -1472,7 +1472,7 @@ dired-do-open (when command (dolist (file files) (cond - ((memq system-type '(gnu/linux)) + ((memq system-type '(gnu/linux berkeley-unix)) (call-process command nil 0 nil file)) ((memq system-type '(ms-dos)) (shell-command (concat command " " (shell-quote-argument file)))) -- 2.46.0