diff options
| author | Eli Zaretskii | 2013-05-16 22:15:32 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-05-16 22:15:32 +0300 |
| commit | 04d360e7bb114321e9b9e35f6e8edb8ec0766f18 (patch) | |
| tree | e5ff64d3d1619b3ad5fd1fad29c3c32d9f92a9d3 /src | |
| parent | 5bb98290d7f11fc6b9fb2d8b33277483f5f3ccc4 (diff) | |
| download | emacs-04d360e7bb114321e9b9e35f6e8edb8ec0766f18.tar.gz emacs-04d360e7bb114321e9b9e35f6e8edb8ec0766f18.zip | |
Document arguments of insert_1_both.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/insdel.c | 9 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 42b21abc8ae..6909367dccb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-05-16 Eli Zaretskii <eliz@gnu.org> | 1 | 2013-05-16 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * insdel.c (insert_1_both): Document the arguments, instead of | ||
| 4 | referring to insert_1, which no longer exists. | ||
| 5 | |||
| 3 | * xdisp.c (message_dolog): If the *Messages* buffer is shown in | 6 | * xdisp.c (message_dolog): If the *Messages* buffer is shown in |
| 4 | some window, increment windows_or_buffers_changed, so that | 7 | some window, increment windows_or_buffers_changed, so that |
| 5 | *Messages* display in that window is updated. (Bug#14408) | 8 | *Messages* display in that window is updated. (Bug#14408) |
diff --git a/src/insdel.c b/src/insdel.c index 8029291cd68..ed684264249 100644 --- a/src/insdel.c +++ b/src/insdel.c | |||
| @@ -771,8 +771,13 @@ count_combining_after (const unsigned char *string, | |||
| 771 | 771 | ||
| 772 | 772 | ||
| 773 | /* Insert a sequence of NCHARS chars which occupy NBYTES bytes | 773 | /* Insert a sequence of NCHARS chars which occupy NBYTES bytes |
| 774 | starting at STRING. INHERIT, PREPARE and BEFORE_MARKERS | 774 | starting at STRING. INHERIT non-zero means inherit the text |
| 775 | are the same as in insert_1. */ | 775 | properties from neighboring characters; zero means inserted text |
| 776 | will have no text properties. PREPARE non-zero means call | ||
| 777 | prepare_to_modify_buffer, which checks that the region is not | ||
| 778 | read-only, and calls before-change-function and any modification | ||
| 779 | properties the text may have. BEFORE_MARKERS non-zero means adjust | ||
| 780 | all markers that point at the insertion place to point after it. */ | ||
| 776 | 781 | ||
| 777 | void | 782 | void |
| 778 | insert_1_both (const char *string, | 783 | insert_1_both (const char *string, |