aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-02-04 03:51:27 +0000
committerGlenn Morris2009-02-04 03:51:27 +0000
commitaacd8ba187331ffba520da1b55d0bd2e15f3aba4 (patch)
treeca359c9876470b188594c89836f1a5dbfe78f76e
parentc789f32c3a74d70a3ac3b0507edd0c721627f56e (diff)
downloademacs-aacd8ba187331ffba520da1b55d0bd2e15f3aba4.tar.gz
emacs-aacd8ba187331ffba520da1b55d0bd2e15f3aba4.zip
(Fwrite_region): Doc fix (mention annotate-functions).
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fileio.c5
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1b59fe49771..b55b8db9917 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12009-02-04 Glenn Morris <rgm@gnu.org>
2
3 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
4
12009-02-04 Kenichi Handa <handa@m17n.org> 52009-02-04 Kenichi Handa <handa@m17n.org>
2 6
3 * Makefile.in (composite.o): Depends on frame.h and termhooks.h. 7 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
diff --git a/src/fileio.c b/src/fileio.c
index 9651ac8e18b..5f91da53585 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -4406,7 +4406,10 @@ The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4406This does code conversion according to the value of 4406This does code conversion according to the value of
4407`coding-system-for-write', `buffer-file-coding-system', or 4407`coding-system-for-write', `buffer-file-coding-system', or
4408`file-coding-system-alist', and sets the variable 4408`file-coding-system-alist', and sets the variable
4409`last-coding-system-used' to the coding system actually used. */) 4409`last-coding-system-used' to the coding system actually used.
4410
4411This calls `write-region-annotate-functions' at the start, and
4412`write-region-post-annotation-function' at the end. */)
4410 (start, end, filename, append, visit, lockname, mustbenew) 4413 (start, end, filename, append, visit, lockname, mustbenew)
4411 Lisp_Object start, end, filename, append, visit, lockname, mustbenew; 4414 Lisp_Object start, end, filename, append, visit, lockname, mustbenew;
4412{ 4415{