emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 69191aeefdb: * test/lisp/wdired-tests.el (wdired-test-bug34915):


From: Michael Albinus
Subject: master 69191aeefdb: * test/lisp/wdired-tests.el (wdired-test-bug34915): Fix for *BSD.
Date: Sat, 7 Dec 2024 09:14:13 -0500 (EST)

branch: master
commit 69191aeefdb0fec0722dbbe29a72ad2af9053f87
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>

    * test/lisp/wdired-tests.el (wdired-test-bug34915): Fix for *BSD.
    
    (Bug#74721)
---
 test/lisp/wdired-tests.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/lisp/wdired-tests.el b/test/lisp/wdired-tests.el
index 7c7026354b8..30622700939 100644
--- a/test/lisp/wdired-tests.el
+++ b/test/lisp/wdired-tests.el
@@ -142,7 +142,8 @@ wdired-get-filename before and after editing."
   (ert-with-temp-directory test-dir
     (let* ((dired-listing-switches "-Fl")
            (dired-ls-F-marks-symlinks
-            (or (eq system-type 'darwin)
+            (or (and (memq system-type '(berkeley-unix darwin))
+                    (not (string= insert-directory-program "gls")))
                 (featurep 'ls-lisp)))
            (buf (find-file-noselect test-dir))
            proc)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]