# HG changeset patch # User Ken Raeburn # Date 975889684 0 # Node ID f493b32a1a912a730d6fda9ce7cabd85a8d01cc2 # Parent cb678a191215d2ebd8dd29850a5db1f5baf0072d (Fmd5): Pass lisp objects, not integers, to call3. diff -r cb678a191215 -r f493b32a1a91 src/fns.c --- a/src/fns.c Mon Dec 04 00:27:33 2000 +0000 +++ b/src/fns.c Mon Dec 04 00:28:04 2000 +0000 @@ -5134,7 +5134,8 @@ && !NILP (Ffboundp (Vselect_safe_coding_system_function))) /* Confirm that VAL can surely encode the current region. */ coding_system = call3 (Vselect_safe_coding_system_function, - b, e, coding_system); + make_number (b), make_number (e), + coding_system); if (force_raw_text) coding_system = Qraw_text;