aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 62708fb60f4..2c1364d540d 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -4052,7 +4052,7 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, adjust)
4052 len = ZV - BEGV; 4052 len = ZV - BEGV;
4053 new = current_buffer; 4053 new = current_buffer;
4054 set_buffer_internal_1 (prev); 4054 set_buffer_internal_1 (prev);
4055 del_range_2 (from, to, from_byte, to_byte); 4055 del_range_2 (from, from_byte, to, to_byte);
4056 insert_from_buffer (new, BEG, len, 0); 4056 insert_from_buffer (new, BEG, len, 0);
4057 to = from + len; 4057 to = from + len;
4058 to_byte = multibyte ? CHAR_TO_BYTE (to) : to; 4058 to_byte = multibyte ? CHAR_TO_BYTE (to) : to;