# HG changeset patch # User Karl Heuer # Date 888448695 0 # Node ID 288cf06bf65c11da836ca77cec756ec34e0c9342 # Parent 3a01b0f0338f1c63a4ebacff30209e1e841b0775 (del_range_both): Reorder args. All callers changed. diff -r 3a01b0f0338f -r 288cf06bf65c src/insdel.c --- a/src/insdel.c Wed Feb 25 23:16:42 1998 +0000 +++ b/src/insdel.c Wed Feb 25 23:18:15 1998 +0000 @@ -1330,8 +1330,8 @@ and bytepos. */ void -del_range_both (from, to, from_byte, to_byte, prepare) - int from, to, from_byte, to_byte, prepare; +del_range_both (from, from_byte, to, to_byte, prepare) + int from, from_byte, to, to_byte, prepare; { /* Make args be valid */ if (from_byte < BEGV_BYTE)