Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
93593876
Commit
93593876
authored
Apr 26, 1996
by
Richard M. Stallman
Browse files
(Ffile_attributes) [WINDOWSNT]: Remove conditional NT code.
parent
4252a4bd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
11 deletions
+0
-11
src/dired.c
src/dired.c
+0
-11
No files found.
src/dired.c
View file @
93593876
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment