# HG changeset patch # User Eli Zaretskii # Date 1239199538 0 # Node ID fb16f3bdad1509ac7f7874e014f28b85324178b5 # Parent dccc80becf9dceb496d5fb8a5ebccaf453105618 (append-to-file): Doc fix. diff -r dccc80becf9d -r fb16f3bdad15 lisp/files.el --- a/lisp/files.el Wed Apr 08 13:51:48 2009 +0000 +++ b/lisp/files.el Wed Apr 08 14:05:38 2009 +0000 @@ -4475,8 +4475,14 @@ (defun append-to-file (start end filename) "Append the contents of the region to the end of file FILENAME. When called from a function, expects three arguments, -START, END and FILENAME. START and END are buffer positions -saying what text to write." +START, END and FILENAME. START and END are normally buffer positions +specifying the part of the buffer to write. +If START is nil, that means to use the entire buffer contents. +If START is a string, then output that string to the file +instead of any buffer contents; END is ignored. + +This does character code conversion and applies annotations +like `write-region' does." (interactive "r\nFAppend to file: ") (write-region start end filename t))