From e19539f184768f9411860daf9ef9d983e48e2650 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 15 Dec 1999 12:49:36 +0000 Subject: [PATCH] (code_convert_region): Fix the secoding arg to update_compositions. --- src/ChangeLog | 5 +++++ src/coding.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 0254aa37e05..df9ad9937c5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +1999-12-15 Kenichi Handa + + * coding.c (code_convert_region): Fix the secoding arg to + update_compositions. + 1999-12-15 Kenichi Handa The following changes are for the new composition mechanism. We 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) if (replace) { signal_after_change (from, to - from, inserted); - update_compositions (from, to, CHECK_BORDER); + update_compositions (from, from + inserted, CHECK_BORDER); } { -- 2.39.5