]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix dired and tramp where `ls` does not have the `-N` option
authorMattias Engdegård <mattiase@acm.org>
Fri, 5 May 2023 17:19:51 +0000 (19:19 +0200)
committerMattias Engdegård <mattiase@acm.org>
Fri, 5 May 2023 17:19:51 +0000 (19:19 +0200)
This includes BSD ls, also used by macOS (bug#63142).

* lisp/dired.el (dired-insert-directory):
* lisp/net/tramp-sh.el (tramp-sh-handle-insert-directory):
Test whether -N is understood by ls since that option is used along
with --dired.  Remove -N when we remove --dired.

lisp/dired.el
lisp/net/tramp-sh.el

index 1c8d011d7653abc40e8a9a0083af20cbeba871d3..e70467ca53b430c84270d3fb749737c96d2e45f1 100644 (file)
@@ -1647,9 +1647,9 @@ If HDR is non-nil, insert a header line with the directory name."
                 ;; save the answer in `dired-use-ls-dired'.
                 (or (setq dired-use-ls-dired
                           (eq 0 (call-process insert-directory-program
-                                               nil nil nil "--dired")))
+                                               nil nil nil "--dired" "-N")))
                     (progn
-                      (message "ls does not support --dired; \
+                      (message "ls does not support --dired -N; \
 see `dired-use-ls-dired' for more details.")
                       nil))
               dired-use-ls-dired)))
@@ -1665,7 +1665,7 @@ see `dired-use-ls-dired' for more details.")
              ;; "--dired", so we cannot add it to the `process-file'
              ;; call for wildcards.
              (when (file-remote-p dir)
-               (setq switches (string-replace "--dired" "" switches)))
+               (setq switches (string-replace "--dired -N" "" switches)))
              (let* ((default-directory (car dir-wildcard))
                     (script (format "ls %s %s" switches (cdr dir-wildcard)))
                     (remotep (file-remote-p dir))
index 94fbc588b5d828e0b1443359c43c9319d3c68a39..d020615af07f486b9454c59d2451797a84aa107e 100644 (file)
@@ -2566,7 +2566,7 @@ The method used must be an out-of-band method."
       (setq switches
            (append switches (split-string (tramp-sh--quoting-style-options v))))
       (unless (tramp-get-ls-command-with v "--dired")
-       (setq switches (delete "--dired" switches)))
+       (setq switches (delete "-N" (delete "--dired" switches))))
       (when wildcard
         (setq wildcard (tramp-run-real-handler
                        #'file-name-nondirectory (list localname)))