aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1998-02-25 23:18:15 +0000
committerKarl Heuer1998-02-25 23:18:15 +0000
commit353800c79a4857bb96d480188c56c3dd7c1f3cb0 (patch)
tree40bc7d290e5be4646577119f88d8fa11461661c6 /src
parent340483df0d0ff3d04beac29684aa8949d9b995ea (diff)
downloademacs-353800c79a4857bb96d480188c56c3dd7c1f3cb0.tar.gz
emacs-353800c79a4857bb96d480188c56c3dd7c1f3cb0.zip
(del_range_both): Reorder args. All callers changed.
Diffstat (limited to 'src')
-rw-r--r--src/insdel.c4
1 files 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)
1330 and bytepos. */ 1330 and bytepos. */
1331 1331
1332void 1332void
1333del_range_both (from, to, from_byte, to_byte, prepare) 1333del_range_both (from, from_byte, to, to_byte, prepare)
1334 int from, to, from_byte, to_byte, prepare; 1334 int from, from_byte, to, to_byte, prepare;
1335{ 1335{
1336 /* Make args be valid */ 1336 /* Make args be valid */
1337 if (from_byte < BEGV_BYTE) 1337 if (from_byte < BEGV_BYTE)