diff options
| author | Kenichi Handa | 1999-12-15 12:49:36 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-12-15 12:49:36 +0000 |
| commit | e19539f184768f9411860daf9ef9d983e48e2650 (patch) | |
| tree | 29691b01ec1814ae9642ac2a1e61793f396763b0 /src/coding.c | |
| parent | 5ec14d3c002d4634b885c13ae63a371a5670a5d7 (diff) | |
| download | emacs-e19539f184768f9411860daf9ef9d983e48e2650.tar.gz emacs-e19539f184768f9411860daf9ef9d983e48e2650.zip | |
(code_convert_region): Fix the secoding arg to
update_compositions.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | { |