(Ftranspose_regions): Fix order of parameters for replace_range.
This commit is contained in:
parent
96d6400464
commit
8daf7106e6
1 changed files with 2 additions and 2 deletions
|
@ -2776,8 +2776,8 @@ Transposing beyond buffer boundaries is an error.")
|
|||
start1_byte, start1_byte + len1_byte,
|
||||
start2_byte, start2_byte + len2_byte);
|
||||
|
||||
replace_range (text1, start2, end2, 1, 0, 1);
|
||||
replace_range (text2, start1, end1, 1, 0, 1);
|
||||
replace_range (start2, end2, text1, 1, 0, 1);
|
||||
replace_range (start1, end1, text2, 1, 0, 1);
|
||||
|
||||
UNGCPRO;
|
||||
return Qnil;
|
||||
|
|
Loading…
Add table
Reference in a new issue