Mercurial > emacs
changeset 15088:488fa3e85f56
(Ffile_attributes) [WINDOWSNT]: Remove conditional NT code.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 26 Apr 1996 19:52:51 +0000 |
parents | 46157341f721 |
children | 3305f0390624 |
files | src/dired.c |
diffstat | 1 files changed, 0 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dired.c Fri Apr 26 19:52:37 1996 +0000 +++ b/src/dired.c Fri Apr 26 19:52:51 1996 +0000 @@ -656,24 +656,13 @@ 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); }