* dired.c (Ffile_attributes): Simplify and avoid #ifdef.
This commit is contained in:
parent
5f9d345ca9
commit
8d40723d1e
2 changed files with 6 additions and 11 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* dired.c (Ffile_attributes): Simplify and avoid #ifdef.
|
||||
|
||||
2011-02-22 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
|
||||
|
||||
* lread.c (openp): Correct Boolean typo in last commit.
|
||||
|
|
13
src/dired.c
13
src/dired.c
|
@ -963,17 +963,8 @@ so last access time will always be midnight of that day. */)
|
|||
if (lstat (SSDATA (encoded), &s) < 0)
|
||||
return Qnil;
|
||||
|
||||
switch (s.st_mode & S_IFMT)
|
||||
{
|
||||
default:
|
||||
values[0] = Qnil; break;
|
||||
case S_IFDIR:
|
||||
values[0] = Qt; break;
|
||||
#ifdef S_IFLNK
|
||||
case S_IFLNK:
|
||||
values[0] = Ffile_symlink_p (filename); break;
|
||||
#endif
|
||||
}
|
||||
values[0] = (S_ISLNK (s.st_mode) ? Ffile_symlink_p (filename)
|
||||
: S_ISDIR (s.st_mode) ? Qt : Qnil);
|
||||
values[1] = make_number (s.st_nlink);
|
||||
|
||||
if (!(NILP (id_format) || EQ (id_format, Qinteger)))
|
||||
|
|
Loading…
Add table
Reference in a new issue