Mercurial > emacs
changeset 25597:16a9c3c6f90e
(Fwrite_region): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 07 Sep 1999 19:40:09 +0000 |
parents | 359d6e7a6ffc |
children | 709e9cdaaab1 |
files | src/fileio.c |
diffstat | 1 files changed, 8 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fileio.c Tue Sep 07 19:21:50 1999 +0000 +++ b/src/fileio.c Tue Sep 07 19:40:09 1999 +0000 @@ -4269,9 +4269,12 @@ that means do not print the \"Wrote file\" message.\n\ The optional sixth arg LOCKNAME, if non-nil, specifies the name to\n\ use for locking and unlocking, overriding FILENAME and VISIT.\n\ -The optional seventh arg CONFIRM, if non-nil, says ask for confirmation\n\ - before overwriting an existing file and if equal to `excl', specifies\n\ - that an error should be raised if the file already exists.\n\ +The optional seventh arg MUSTBENEW, if non-nil, insists on a check\n\ + for an existing file with the same name. If MUSTBENEW is `excl',\n\ + that means to get an error if the file already exists; never overwrite.\n\ + If MUSTBENEW is neither nil nor `excl', that means ask for\n\ + confirmation before overwriting, but do go ahead and overwrite the file\n\ + if the user confirms.\n\ Kludgy feature: if START is a string, then that string is written\n\ to the file, instead of any buffer contents, and END is ignored.\n\ \n\ @@ -4280,8 +4283,8 @@ `file-coding-system-alist', and sets the variable\n\ `last-coding-system-used' to the coding system actually used.") - (start, end, filename, append, visit, lockname, confirm) - Lisp_Object start, end, filename, append, visit, lockname, confirm; + (start, end, filename, append, visit, lockname, mustbenew) + Lisp_Object start, end, filename, append, visit, lockname, mustbenew; { register int desc; int failure;