diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-02 19:06:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-02 19:06:31 +0000 |
commit | f547047b9eda9a7e159c705b2452cc4475da948e (patch) | |
tree | 225939fc81333e24c5971d83ac8692833a42bf23 /src | |
parent | 0118b975aa9ad5099ace220b5cf7fb98cf791550 (diff) | |
download | emacs-f547047b9eda9a7e159c705b2452cc4475da948e.tar.gz |
(Fcopy_file): Fix error message.
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index d9dde6c4a7e..0e04ef4a3d9 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -2130,7 +2130,7 @@ A prefix arg makes KEEP-TIME non-nil.") EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); if (set_file_times (XSTRING (newname)->data, atime, mtime)) Fsignal (Qfile_date_error, - Fcons (build_string ("File already exists"), + Fcons (build_string ("Cannot set file date"), Fcons (newname, Qnil))); } #ifndef MSDOS |