aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKai Großjohann2003-06-13 08:40:16 +0000
committerKai Großjohann2003-06-13 08:40:16 +0000
commitb8f75eda19093a5d0f5ef462a16c32753cca79c1 (patch)
treed4646a3c1fda7b1a56a2fd6437ba0a4c95262ce5 /src
parentfbcffa4ab13148ab56a52bd6ed95459c1c64f0c9 (diff)
downloademacs-b8f75eda19093a5d0f5ef462a16c32753cca79c1.tar.gz
emacs-b8f75eda19093a5d0f5ef462a16c32753cca79c1.zip
(Fcopy_file): Doc fix: copies file modes, too.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fileio.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ce524bfd6e2..fdd84be27de 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12003-06-13 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
2
3 * fileio.c (Fcopy_file): Doc fix: copies file modes, too.
4
12003-06-12 Kenichi Handa <handa@m17n.org> 52003-06-12 Kenichi Handa <handa@m17n.org>
2 6
3 * fileio.c (Fwrite_region): Save and restore restriction. 7 * fileio.c (Fwrite_region): Save and restore restriction.
diff --git a/src/fileio.c b/src/fileio.c
index db5cab44756..fa8958c11b4 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2386,7 +2386,8 @@ A number as third arg means request confirmation if NEWNAME already exists.
2386This is what happens in interactive use with M-x. 2386This is what happens in interactive use with M-x.
2387Fourth arg KEEP-TIME non-nil means give the new file the same 2387Fourth arg KEEP-TIME non-nil means give the new file the same
2388last-modified time as the old one. (This works on only some systems.) 2388last-modified time as the old one. (This works on only some systems.)
2389A prefix arg makes KEEP-TIME non-nil. */) 2389A prefix arg makes KEEP-TIME non-nil.
2390Also set the file modes of the target file to match the source file. */)
2390 (file, newname, ok_if_already_exists, keep_time) 2391 (file, newname, ok_if_already_exists, keep_time)
2391 Lisp_Object file, newname, ok_if_already_exists, keep_time; 2392 Lisp_Object file, newname, ok_if_already_exists, keep_time;
2392{ 2393{