from_byte = CHAR_TO_BYTE (from);
to_byte = CHAR_TO_BYTE (to);
- del_range_2 (from, to, from_byte, to_byte);
+ del_range_2 (from, from_byte, to, to_byte);
}
/* Like del_range_1 but args are byte positions, not char positions. */
to_byte = CHAR_TO_BYTE (to);
}
- del_range_2 (from, to, from_byte, to_byte);
+ del_range_2 (from, from_byte, to, to_byte);
}
/* Like del_range_1, but positions are specified both as charpos
to_byte = CHAR_TO_BYTE (to);
}
- del_range_2 (from, to, from_byte, to_byte);
+ del_range_2 (from, from_byte, to, to_byte);
}
/* Delete a range of text, specified both as character positions
while FROM_BYTE and TO_BYTE are byte positions. */
void
-del_range_2 (from, to, from_byte, to_byte)
- int from, to, from_byte, to_byte;
+del_range_2 (from, from_byte, to, to_byte)
+ int from, from_byte, to, to_byte;
{
register int nbytes_del, nchars_del;