diff options
author | Kai Großjohann <kgrossjo@eu.uu.net> | 2003-06-13 08:40:16 +0000 |
---|---|---|
committer | Kai Großjohann <kgrossjo@eu.uu.net> | 2003-06-13 08:40:16 +0000 |
commit | b8f75eda19093a5d0f5ef462a16c32753cca79c1 (patch) | |
tree | d4646a3c1fda7b1a56a2fd6437ba0a4c95262ce5 /src/fileio.c | |
parent | fbcffa4ab13148ab56a52bd6ed95459c1c64f0c9 (diff) | |
download | emacs-b8f75eda19093a5d0f5ef462a16c32753cca79c1.tar.gz |
(Fcopy_file): Doc fix: copies file modes, too.
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 3 |
1 files changed, 2 insertions, 1 deletions
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. This is what happens in interactive use with M-x. Fourth arg KEEP-TIME non-nil means give the new file the same last-modified time as the old one. (This works on only some systems.) -A prefix arg makes KEEP-TIME non-nil. */) +A prefix arg makes KEEP-TIME non-nil. +Also set the file modes of the target file to match the source file. */) (file, newname, ok_if_already_exists, keep_time) Lisp_Object file, newname, ok_if_already_exists, keep_time; { |