emacs-pretest-bug
[Top][All Lists]
Advanced

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

dired-insert-directory bug?


From: Katsumi Yamaoka
Subject: dired-insert-directory bug?
Date: Fri, 13 Feb 2004 17:55:50 +0900
User-agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux)

Hi,

It seems that there's a wrong logic in the dired-insert-directory
function.  When accessing a remote directory, it adds the --dired
option to dired-listing-switches (i.e., the ls command options).
However, it won't be accepted by all remotehosts.  How about the
following patch?

*** dired.el~   Tue Feb  3 22:44:34 2004
--- dired.el    Fri Feb 13 08:52:17 2004
***************
*** 694,700 ****
    (let ((opoint (point))
        (process-environment (copy-sequence process-environment))
        end)
!     (if (or dired-use-ls-dired (file-remote-p dir))
        (setq switches (concat "--dired " switches)))
      ;; We used to specify the C locale here, to force English month names;
      ;; but this should not be necessary any more,
--- 694,700 ----
    (let ((opoint (point))
        (process-environment (copy-sequence process-environment))
        end)
!     (if (and dired-use-ls-dired (not (file-remote-p dir)))
        (setq switches (concat "--dired " switches)))
      ;; We used to specify the C locale here, to force English month names;
      ;; but this should not be necessary any more,

I noticed this problem while fiddling ange-ftp.el imported from
Emacs 19.34b. :)

Regards,
-- 
Katsumi Yamaoka <address@hidden>




reply via email to

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