]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcopy_file): Fix backward test of KEEP_TIME.
authorRichard M. Stallman <rms@gnu.org>
Wed, 16 Oct 2002 15:58:59 +0000 (15:58 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 16 Oct 2002 15:58:59 +0000 (15:58 +0000)
src/ChangeLog
src/fileio.c

index b9590eb3bb3eb4785cacffe194590e12a6f9c736..2bd666419ab494743ed72e70a6884f89e44c4f6f 100644 (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):
index 152364a6e82d72885ddc2fe2e9b2ea0392b81e31..84e67b81e7f3a78efe74ed9819f4236d9dce37c9 100644 (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;