Next: , Up: Writing to Files   [Index]


7.3.5.1 append-to-file

Function: append-to-file start end filename

This function appends the contents of the region delimited by START and END in the current buffer to the end of file FILENAME. If that file does not exist, it is created.

When called from Lisp, this function is completely equivalent to:

(write-region start end filename t)
RETURN VALUE

nil