diff options
| -rw-r--r-- | lisp/files.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el index 4bd9e89262b..3d264a3ddd5 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -2337,8 +2337,7 @@ Don't call it from programs! Use `insert-file-contents' instead. | |||
| 2337 | "Append the contents of the region to the end of file FILENAME. | 2337 | "Append the contents of the region to the end of file FILENAME. |
| 2338 | When called from a function, expects three arguments, | 2338 | When called from a function, expects three arguments, |
| 2339 | START, END and FILENAME. START and END are buffer positions | 2339 | START, END and FILENAME. START and END are buffer positions |
| 2340 | saying what text to write. | 2340 | saying what text to write." |
| 2341 | A prefix argument enables user to specify the coding-system interactively." | ||
| 2342 | (interactive "r\nFAppend to file: ") | 2341 | (interactive "r\nFAppend to file: ") |
| 2343 | (write-region start end filename t)) | 2342 | (write-region start end filename t)) |
| 2344 | 2343 | ||