# HG changeset patch # User Eli Zaretskii # Date 976980663 0 # Node ID 3a16306fdadf2a368f13570f2ca9fc947739dea4 # Parent a0dab8c919628b4dab3a9b6d3ad6e362616a3636 (Fcopy_file): Rename the last argument to keep_time, to be consistent with the doc string. diff -r a0dab8c91962 -r 3a16306fdadf src/fileio.c --- a/src/fileio.c Sat Dec 16 15:13:31 2000 +0000 +++ b/src/fileio.c Sat Dec 16 15:31:03 2000 +0000 @@ -2278,8 +2278,8 @@ Fourth arg KEEP-TIME non-nil means give the new file the same\n\ last-modified time as the old one. (This works on only some systems.)\n\ A prefix arg makes KEEP-TIME non-nil.") - (file, newname, ok_if_already_exists, keep_date) - Lisp_Object file, newname, ok_if_already_exists, keep_date; + (file, newname, ok_if_already_exists, keep_time) + Lisp_Object file, newname, ok_if_already_exists, keep_time; { int ifd, ofd, n; char buf[16 * 1024]; @@ -2306,7 +2306,7 @@ handler = Ffind_file_name_handler (newname, Qcopy_file); if (!NILP (handler)) RETURN_UNGCPRO (call5 (handler, Qcopy_file, file, newname, - ok_if_already_exists, keep_date)); + ok_if_already_exists, keep_time)); encoded_file = ENCODE_FILE (file); encoded_newname = ENCODE_FILE (newname); @@ -2381,7 +2381,7 @@ if (input_file_statable_p) { - if (!NILP (keep_date)) + if (!NILP (keep_time)) { EMACS_TIME atime, mtime; EMACS_SET_SECS_USECS (atime, st.st_atime, 0);