From: Ken Raeburn Date: Mon, 4 Dec 2000 00:28:04 +0000 (+0000) Subject: (Fmd5): Pass lisp objects, not integers, to call3. X-Git-Tag: emacs-pretest-21.0.93~263 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=70da6a764fd934aa75288bf428381c7009f44ed5;p=emacs.git (Fmd5): Pass lisp objects, not integers, to call3. --- diff --git a/src/fns.c b/src/fns.c index f8cc86347ed..a317f1bef3a 100644 --- a/src/fns.c +++ b/src/fns.c @@ -5134,7 +5134,8 @@ Emacsen and is ignored.") && !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;