changeset 20983:288cf06bf65c

(del_range_both): Reorder args. All callers changed.
author Karl Heuer <kwzh@gnu.org>
date Wed, 25 Feb 1998 23:18:15 +0000
parents 3a01b0f0338f
children f27355b19aba
files src/insdel.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)