From: Karl Heuer Date: Wed, 25 Feb 1998 23:18:15 +0000 (+0000) Subject: (del_range_both): Reorder args. All callers changed. X-Git-Tag: emacs-20.3~2091 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=353800c79a4857bb96d480188c56c3dd7c1f3cb0;p=emacs.git (del_range_both): Reorder args. All callers changed. --- 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)