From 353800c79a4857bb96d480188c56c3dd7c1f3cb0 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 25 Feb 1998 23:18:15 +0000 Subject: [PATCH] (del_range_both): Reorder args. All callers changed. --- src/insdel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insdel.c b/src/insdel.c index 461cf6da40d..8b4a6fb74ae 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -1330,8 +1330,8 @@ del_range_byte (from_byte, to_byte, prepare) 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) -- 2.39.5