changeset 30269:30829e002c1b

(eshell-shuffle-files): Don't disable same-file check in the MS-DOS version (it does support inodes).
author Eli Zaretskii <eliz@gnu.org>
date Tue, 18 Jul 2000 11:44:12 +0000
parents abaabcf2c67c
children 1ba9e2802a23
files lisp/eshell/em-unix.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/eshell/em-unix.el	Tue Jul 18 11:13:55 2000 +0000
+++ b/lisp/eshell/em-unix.el	Tue Jul 18 11:44:12 2000 +0000
@@ -313,7 +313,8 @@
 	    (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)))