]> git.eshelyaron.com Git - emacs.git/commitdiff
(eshell-shuffle-files): Don't disable
authorEli Zaretskii <eliz@gnu.org>
Tue, 18 Jul 2000 11:44:12 +0000 (11:44 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 18 Jul 2000 11:44:12 +0000 (11:44 +0000)
same-file check in the MS-DOS version (it does support inodes).

lisp/eshell/em-unix.el

index 07b318e6be7c266832f73b3e39cd09584212e17a..33a99cb06a3c15209c345bd8f99cde3f80924469 100644 (file)
@@ -313,7 +313,8 @@ Remove the DIRECTORY(ies), if they are empty.")
            (eshell-error (format "%s: %s: omitting directory\n"
                                  command (car files)))))
        ((and attr-target
-            (not (eshell-under-windows-p))
+            (or (not (eshell-under-windows-p))
+                (eq system-type 'ms-dos))
             (setq attr (file-attributes (car files)))
             (= (nth 10 attr-target) (nth 10 attr))
             (= (nth 11 attr-target) (nth 11 attr)))