aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>1999-12-15 12:49:36 +0000
committerKenichi Handa <[email protected]>1999-12-15 12:49:36 +0000
commite19539f184768f9411860daf9ef9d983e48e2650 (patch)
tree29691b01ec1814ae9642ac2a1e61793f396763b0 /src
parent5ec14d3c002d4634b885c13ae63a371a5670a5d7 (diff)
(code_convert_region): Fix the secoding arg to
update_compositions.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/coding.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0254aa37e0..df9ad9937c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
1999-12-15 Kenichi Handa <[email protected]>
+ * coding.c (code_convert_region): Fix the secoding arg to
+ update_compositions.
+
+1999-12-15 Kenichi Handa <[email protected]>
+
The following changes are for the new composition mechanism. We
have deleted `composition' charset and composite characters,
instead introduced a special text property `composition'.
diff --git a/src/coding.c b/src/coding.c
index 14fb12dc34..5077fa9ca0 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -4959,7 +4959,7 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace)
if (replace)
{
signal_after_change (from, to - from, inserted);
- update_compositions (from, to, CHECK_BORDER);
+ update_compositions (from, from + inserted, CHECK_BORDER);
}
{