diff options
| author | Richard M. Stallman | 1999-09-07 19:40:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-09-07 19:40:09 +0000 |
| commit | f7b4065fc9d6e8ece0a61645328d540279150bf9 (patch) | |
| tree | a431b167320a09a330ccc104312ea5a0784e3be6 /src | |
| parent | fb0e4f8a84131a7a176f7dad4cbb61ac71e2e7c3 (diff) | |
| download | emacs-f7b4065fc9d6e8ece0a61645328d540279150bf9.tar.gz emacs-f7b4065fc9d6e8ece0a61645328d540279150bf9.zip | |
(Fwrite_region): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/fileio.c b/src/fileio.c index ffa05e1d33c..579258f5236 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -4269,9 +4269,12 @@ If VISIT is neither t nor nil nor a string,\n\ | |||
| 4269 | that means do not print the \"Wrote file\" message.\n\ | 4269 | that means do not print the \"Wrote file\" message.\n\ |
| 4270 | The optional sixth arg LOCKNAME, if non-nil, specifies the name to\n\ | 4270 | The optional sixth arg LOCKNAME, if non-nil, specifies the name to\n\ |
| 4271 | use for locking and unlocking, overriding FILENAME and VISIT.\n\ | 4271 | use for locking and unlocking, overriding FILENAME and VISIT.\n\ |
| 4272 | The optional seventh arg CONFIRM, if non-nil, says ask for confirmation\n\ | 4272 | The optional seventh arg MUSTBENEW, if non-nil, insists on a check\n\ |
| 4273 | before overwriting an existing file and if equal to `excl', specifies\n\ | 4273 | for an existing file with the same name. If MUSTBENEW is `excl',\n\ |
| 4274 | that an error should be raised if the file already exists.\n\ | 4274 | that means to get an error if the file already exists; never overwrite.\n\ |
| 4275 | If MUSTBENEW is neither nil nor `excl', that means ask for\n\ | ||
| 4276 | confirmation before overwriting, but do go ahead and overwrite the file\n\ | ||
| 4277 | if the user confirms.\n\ | ||
| 4275 | Kludgy feature: if START is a string, then that string is written\n\ | 4278 | Kludgy feature: if START is a string, then that string is written\n\ |
| 4276 | to the file, instead of any buffer contents, and END is ignored.\n\ | 4279 | to the file, instead of any buffer contents, and END is ignored.\n\ |
| 4277 | \n\ | 4280 | \n\ |
| @@ -4280,8 +4283,8 @@ This does code conversion according to the value of\n\ | |||
| 4280 | `file-coding-system-alist', and sets the variable\n\ | 4283 | `file-coding-system-alist', and sets the variable\n\ |
| 4281 | `last-coding-system-used' to the coding system actually used.") | 4284 | `last-coding-system-used' to the coding system actually used.") |
| 4282 | 4285 | ||
| 4283 | (start, end, filename, append, visit, lockname, confirm) | 4286 | (start, end, filename, append, visit, lockname, mustbenew) |
| 4284 | Lisp_Object start, end, filename, append, visit, lockname, confirm; | 4287 | Lisp_Object start, end, filename, append, visit, lockname, mustbenew; |
| 4285 | { | 4288 | { |
| 4286 | register int desc; | 4289 | register int desc; |
| 4287 | int failure; | 4290 | int failure; |