mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(Fcopy_file): Fix backward test of KEEP_TIME.
This commit is contained in:
parent
796a8f27c1
commit
9eb222eb15
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2002-10-16 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
|
||||
|
||||
2002-10-15 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* sysdep.c [MSDOS] (request_sigio, unrequest_sigio):
|
||||
|
|
|
|||
|
|
@ -2356,7 +2356,7 @@ A prefix arg makes KEEP-TIME non-nil.")
|
|||
XSTRING (encoded_newname)->data,
|
||||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue