comparison src/coding.c @ 20999:e4dd62e5d921

Reorder args in callers of del_range_2.
author Karl Heuer <kwzh@gnu.org>
date Fri, 27 Feb 1998 22:09:52 +0000
parents 068eb408c911
children 839b22ad1e42
comparison
equal deleted inserted replaced
20998:1e0b48e0e84f 20999:e4dd62e5d921
4050 if (current_buffer != prev) 4050 if (current_buffer != prev)
4051 { 4051 {
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;
4059 len_byte = to_byte - from_byte; 4059 len_byte = to_byte - from_byte;
4060 } 4060 }