diff options
| author | Karl Heuer | 1998-02-27 22:09:52 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-02-27 22:09:52 +0000 |
| commit | ddbc19ff25c902350be41d2d3bff0fbceccd359d (patch) | |
| tree | 98a1e8a320d2ae903c1a22a0427956b106b22c0e /src/coding.c | |
| parent | a66afea01c7c5252ebd837baee44797507f86802 (diff) | |
| download | emacs-ddbc19ff25c902350be41d2d3bff0fbceccd359d.tar.gz emacs-ddbc19ff25c902350be41d2d3bff0fbceccd359d.zip | |
Reorder args in callers of del_range_2.
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 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; |