# HG changeset patch # User Eli Zaretskii # Date 963920652 0 # Node ID 30829e002c1b68a40bebea2be94809696f4f265f # Parent abaabcf2c67c0c8f5c6b25efdd14cf9fbc46a688 (eshell-shuffle-files): Don't disable same-file check in the MS-DOS version (it does support inodes). diff -r abaabcf2c67c -r 30829e002c1b lisp/eshell/em-unix.el --- 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)))