changeset 34153:f493b32a1a91

(Fmd5): Pass lisp objects, not integers, to call3.
author Ken Raeburn <raeburn@raeburn.org>
date Mon, 04 Dec 2000 00:28:04 +0000
parents cb678a191215
children 88440ae23652
files src/fns.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;