Mercurial > hg > xemacs-beta
comparison man/lispref/files.texi @ 142:1856695b1fa9 r20-2b5
Import from CVS: tag r20-2b5
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:33:18 +0200 |
parents | b980b6286996 |
children | 7df0dd720c89 |
comparison
equal
deleted
inserted
replaced
141:ea67ad3963dc | 142:1856695b1fa9 |
---|---|
453 mechanisms for visiting. | 453 mechanisms for visiting. |
454 | 454 |
455 @deffn Command append-to-file start end filename | 455 @deffn Command append-to-file start end filename |
456 This function appends the contents of the region delimited by | 456 This function appends the contents of the region delimited by |
457 @var{start} and @var{end} in the current buffer to the end of file | 457 @var{start} and @var{end} in the current buffer to the end of file |
458 @var{filename}. If that file does not exist, it is created. This | 458 @var{filename}. If that file does not exist, it is created. If that |
459 function returns @code{nil}. | 459 file exists it is overwritten. This function returns @code{nil}. |
460 | 460 |
461 An error is signaled if @var{filename} specifies a nonwritable file, | 461 An error is signaled if @var{filename} specifies a nonwritable file, |
462 or a nonexistent file in a directory where files cannot be created. | 462 or a nonexistent file in a directory where files cannot be created. |
463 @end deffn | 463 @end deffn |
464 | 464 |