(Fcopy_file): Fix backward test of KEEP_TIME.

This commit is contained in:
Richard M. Stallman 2002-10-16 15:58:59 +00:00
parent 796a8f27c1
commit 9eb222eb15
2 changed files with 5 additions and 1 deletions

View file

@ -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):

View file

@ -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;