diff options
| author | Richard M. Stallman | 2002-10-16 15:56:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-10-16 15:56:31 +0000 |
| commit | a8c44e3998e5cb382275bf26478b62e4d246522b (patch) | |
| tree | 145416eae7d66c572b241720ae3b0a1824bbe66e /src | |
| parent | 3bc0820613dfd93526ea1e8047cefb9a79357aff (diff) | |
| download | emacs-a8c44e3998e5cb382275bf26478b62e4d246522b.tar.gz emacs-a8c44e3998e5cb382275bf26478b62e4d246522b.zip | |
(Fcopy_file): Fix backward test of KEEP_TIME.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fileio.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 782acdab876..0d27a054e22 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-10-16 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME. | ||
| 4 | |||
| 1 | 2002-10-14 Juanma Barranquero <lektu@terra.es> | 5 | 2002-10-14 Juanma Barranquero <lektu@terra.es> |
| 2 | 6 | ||
| 3 | * w16select.c (syms_of_win16select): Fix docstring for | 7 | * w16select.c (syms_of_win16select): Fix docstring for |
diff --git a/src/fileio.c b/src/fileio.c index 2e83159ef86..41504f9882b 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2417,7 +2417,7 @@ A prefix arg makes KEEP-TIME non-nil. */) | |||
| 2417 | SDATA (encoded_newname), | 2417 | SDATA (encoded_newname), |
| 2418 | FALSE)) | 2418 | FALSE)) |
| 2419 | report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil))); | 2419 | report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil))); |
| 2420 | else if (NILP (keep_time)) | 2420 | else if (!NILP (keep_time)) |
| 2421 | { | 2421 | { |
| 2422 | EMACS_TIME now; | 2422 | EMACS_TIME now; |
| 2423 | DWORD attributes; | 2423 | DWORD attributes; |