summaryrefslogtreecommitdiff
path: root/src/dired.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-04-26 19:52:51 +0000
committerRichard M. Stallman <rms@gnu.org>1996-04-26 19:52:51 +0000
commitcb967a7e9693b135b054c70563c0b5f3b745e088 (patch)
treef87d8739861cbe27c8189e12f4ab7b3f5c6970a1 /src/dired.c
parent392fe060e805b9eca88176b7f33c77e3a68f57cf (diff)
downloademacs-cb967a7e9693b135b054c70563c0b5f3b745e088.tar.gz
(Ffile_attributes) [WINDOWSNT]: Remove conditional NT code.
Diffstat (limited to 'src/dired.c')
-rw-r--r--src/dired.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/dired.c b/src/dired.c
index ce578a175a2..cce03607de2 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -656,24 +656,13 @@ If file does not exist, returns nil.")
else /* if we can't tell, assume worst */
values[9] = Qt;
#else /* file gid will be egid */
-#ifdef WINDOWSNT
- values[9] = Qnil; /* sorry, no group IDs on NT */
-#else /* not WINDOWSNT */
values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
-#endif /* not WINDOWSNT */
#endif /* BSD4_2 (or BSD4_3) */
#ifdef BSD4_3
#undef BSD4_2 /* ok, you can look again without throwing up */
#endif
-#ifdef WINDOWSNT
- /* Fill in the inode and device values specially...see nt.c. */
- if (!get_inode_and_device_vals (filename, &values[10], &values[11])) {
- return Qnil;
- }
-#else /* not WINDOWSNT */
values[10] = make_number (s.st_ino);
values[11] = make_number (s.st_dev);
-#endif /* not WINDOWSNT */
return Flist (sizeof(values) / sizeof(values[0]), values);
}