1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(Fcopy_file): Fix backward test of KEEP_TIME.

This commit is contained in:
Richard M. Stallman 2002-10-16 15:56:31 +00:00
parent 3bc0820613
commit a8c44e3998
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-14 Juanma Barranquero <lektu@terra.es>
* w16select.c (syms_of_win16select): Fix docstring for

View File

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