diff options
| author | Glenn Morris | 2009-02-04 03:51:27 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-04 03:51:27 +0000 |
| commit | aacd8ba187331ffba520da1b55d0bd2e15f3aba4 (patch) | |
| tree | ca359c9876470b188594c89836f1a5dbfe78f76e | |
| parent | c789f32c3a74d70a3ac3b0507edd0c721627f56e (diff) | |
| download | emacs-aacd8ba187331ffba520da1b55d0bd2e15f3aba4.tar.gz emacs-aacd8ba187331ffba520da1b55d0bd2e15f3aba4.zip | |
(Fwrite_region): Doc fix (mention annotate-functions).
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fileio.c | 5 |
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 @@ | |||
| 1 | 2009-02-04 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * fileio.c (Fwrite_region): Doc fix (mention annotate-functions). | ||
| 4 | |||
| 1 | 2009-02-04 Kenichi Handa <handa@m17n.org> | 5 | 2009-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 | |||
| 4406 | This does code conversion according to the value of | 4406 | This 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 | |||
| 4411 | This 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 | { |