]> git.eshelyaron.com Git - emacs.git/commitdiff
* dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of the MSDOS definition.
authorKen Brown <kbrown@cornell.edu>
Tue, 27 Jul 2010 11:10:48 +0000 (07:10 -0400)
committerKen Brown <kbrown@cornell.edu>
Tue, 27 Jul 2010 11:10:48 +0000 (07:10 -0400)
src/ChangeLog
src/dired.c

index 6b9c8614837025d12a92e255b27235f20348e664..78eb27f0814b9039a7451ae9993489794cbfa536 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-27  Ken Brown  <kbrown@cornell.edu>
+
+       * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
+       the MSDOS definition.
+
 2010-07-25  Christoph Scholtes  <cschol2112@gmail.com>
 
        * minibuf.c (Fread_buffer): Doc fix (bug#6528).
index d4b0ff20db2f62260584b701d97389bc2dfc9516..92a768da5be23195854dc82beba4be43de7297d2 100644 (file)
@@ -72,8 +72,7 @@ extern struct direct *readdir ();
 #endif /* not MSDOS */
 #endif /* not SYSV_SYSTEM_DIR */
 
-/* Some versions of Cygwin don't have d_ino in `struct dirent'.  */
-#if defined(MSDOS) || defined(__CYGWIN__)
+#ifdef MSDOS
 #define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0)
 #else
 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino)