aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-08-19 10:59:47 +0000
committerKenichi Handa1997-08-19 10:59:47 +0000
commitda30bf98df0d322e597b2bee1dc0ff747dbe8f82 (patch)
tree64934c605b8883055228f54e3a73b14a1bdb3934
parenta0d4676ae3eabea8a8af747606494671459528b5 (diff)
downloademacs-da30bf98df0d322e597b2bee1dc0ff747dbe8f82.tar.gz
emacs-da30bf98df0d322e597b2bee1dc0ff747dbe8f82.zip
(append-to-file): Doc-string fixed.
-rw-r--r--lisp/files.el3
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.
2338When called from a function, expects three arguments, 2338When called from a function, expects three arguments,
2339START, END and FILENAME. START and END are buffer positions 2339START, END and FILENAME. START and END are buffer positions
2340saying what text to write. 2340saying what text to write."
2341A 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