aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1999-12-15 12:49:36 +0000
committerKenichi Handa1999-12-15 12:49:36 +0000
commite19539f184768f9411860daf9ef9d983e48e2650 (patch)
tree29691b01ec1814ae9642ac2a1e61793f396763b0 /src
parent5ec14d3c002d4634b885c13ae63a371a5670a5d7 (diff)
downloademacs-e19539f184768f9411860daf9ef9d983e48e2650.tar.gz
emacs-e19539f184768f9411860daf9ef9d983e48e2650.zip
(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 0254aa37e05..df9ad9937c5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
11999-12-15 Kenichi Handa <handa@etl.go.jp> 11999-12-15 Kenichi Handa <handa@etl.go.jp>
2 2
3 * coding.c (code_convert_region): Fix the secoding arg to
4 update_compositions.
5
61999-12-15 Kenichi Handa <handa@etl.go.jp>
7
3 The following changes are for the new composition mechanism. We 8 The following changes are for the new composition mechanism. We
4 have deleted `composition' charset and composite characters, 9 have deleted `composition' charset and composite characters,
5 instead introduced a special text property `composition'. 10 instead introduced a special text property `composition'.
diff --git a/src/coding.c b/src/coding.c
index 14fb12dc344..5077fa9ca07 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)
4959 if (replace) 4959 if (replace)
4960 { 4960 {
4961 signal_after_change (from, to - from, inserted); 4961 signal_after_change (from, to - from, inserted);
4962 update_compositions (from, to, CHECK_BORDER); 4962 update_compositions (from, from + inserted, CHECK_BORDER);
4963 } 4963 }
4964 4964
4965 { 4965 {