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
a8c44e39
Commit
a8c44e39
authored
Oct 16, 2002
by
Richard M. Stallman
Browse files
(Fcopy_file): Fix backward test of KEEP_TIME.
parent
3bc08206
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/fileio.c
src/fileio.c
+1
-1
No files found.
src/ChangeLog
View file @
a8c44e39
2002-10-16 Richard M. Stallman <rms@gnu.org>
* fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
2002-10-14 Juanma Barranquero <lektu@terra.es>
* w16select.c (syms_of_win16select): Fix docstring for
...
...
src/fileio.c
View file @
a8c44e39
...
...
@@ -2417,7 +2417,7 @@ A prefix arg makes KEEP-TIME non-nil. */)
SDATA
(
encoded_newname
),
FALSE
))
report_file_error
(
"Copying file"
,
Fcons
(
file
,
Fcons
(
newname
,
Qnil
)));
else
if
(
NILP
(
keep_time
))
else
if
(
!
NILP
(
keep_time
))
{
EMACS_TIME
now
;
DWORD
attributes
;
...
...
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