From: Kenichi Handa Date: Wed, 15 Dec 1999 12:49:36 +0000 (+0000) Subject: (code_convert_region): Fix the secoding arg to X-Git-Tag: emacs-pretest-21.0.90~5708 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e19539f184768f9411860daf9ef9d983e48e2650;p=emacs.git (code_convert_region): Fix the secoding arg to update_compositions. --- 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); } {