diff options
| author | Richard M. Stallman | 2005-01-21 20:51:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-01-21 20:51:52 +0000 |
| commit | 7f08b80e335a9d40acc5275c4d5ce2a6e64c407a (patch) | |
| tree | 1f24b58b326b5e09054ada34fd71568991917122 /src | |
| parent | 6a8a289211955fb659b6bd47fd8c3a75f9deeb6d (diff) | |
| download | emacs-7f08b80e335a9d40acc5275c4d5ce2a6e64c407a.tar.gz emacs-7f08b80e335a9d40acc5275c4d5ce2a6e64c407a.zip | |
(Fcopy_file): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fileio.c b/src/fileio.c index a3bb5aab62e..e8a4ad09101 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2390,10 +2390,10 @@ Signals a `file-already-exists' error if file NEWNAME already exists, | |||
| 2390 | unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil. | 2390 | unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil. |
| 2391 | A number as third arg means request confirmation if NEWNAME already exists. | 2391 | A number as third arg means request confirmation if NEWNAME already exists. |
| 2392 | This is what happens in interactive use with M-x. | 2392 | This is what happens in interactive use with M-x. |
| 2393 | Fourth arg KEEP-TIME non-nil means give the new file the same | 2393 | Always sets the file modes of the output file to match the input file. |
| 2394 | Fourth arg KEEP-TIME non-nil means give the output file the same | ||
| 2394 | last-modified time as the old one. (This works on only some systems.) | 2395 | last-modified time as the old one. (This works on only some systems.) |
| 2395 | A prefix arg makes KEEP-TIME non-nil. | 2396 | A prefix arg makes KEEP-TIME non-nil. */) |
| 2396 | Also set the file modes of the target file to match the source file. */) | ||
| 2397 | (file, newname, ok_if_already_exists, keep_time) | 2397 | (file, newname, ok_if_already_exists, keep_time) |
| 2398 | Lisp_Object file, newname, ok_if_already_exists, keep_time; | 2398 | Lisp_Object file, newname, ok_if_already_exists, keep_time; |
| 2399 | { | 2399 | { |