Mercurial > hg > xemacs-beta
diff src/dired.c @ 100:4be1180a9e89 r20-1b2
Import from CVS: tag r20-1b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:15:11 +0200 |
parents | 1ce6082ce73f |
children | 9f59509498e1 |
line wrap: on
line diff
--- a/src/dired.c Mon Aug 13 09:13:58 2007 +0200 +++ b/src/dired.c Mon Aug 13 09:15:11 2007 +0200 @@ -695,23 +695,10 @@ 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 WINDOWSNT - /* Fill in the inode and device values specially...see nt.c. */ - if (!get_inode_and_device_vals (filename, &values[10], &values[11])) - { - UNGCPRO; - return Qnil; - } -#else /* not WINDOWSNT */ values[10] = make_int (s.st_ino); values[11] = make_int (s.st_dev); -#endif /* not WINDOWSNT */ UNGCPRO; return Flist (countof (values), values); }