]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmd5): Pass lisp objects, not integers, to call3.
authorKen Raeburn <raeburn@raeburn.org>
Mon, 4 Dec 2000 00:28:04 +0000 (00:28 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Mon, 4 Dec 2000 00:28:04 +0000 (00:28 +0000)
src/fns.c

index f8cc86347ede7cd094a40550069f213b19d3fdd0..a317f1bef3ab46c73aed053f97814a735835a91d 100644 (file)
--- 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;