aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2000-12-04 00:28:04 +0000
committerKen Raeburn2000-12-04 00:28:04 +0000
commit70da6a764fd934aa75288bf428381c7009f44ed5 (patch)
tree3b0e6c59fcfd8104cf1dc53ce134cd7c8a472c3c /src
parent6dd241868ee68c373fd2f294ce19a69e33a400d4 (diff)
downloademacs-70da6a764fd934aa75288bf428381c7009f44ed5.tar.gz
emacs-70da6a764fd934aa75288bf428381c7009f44ed5.zip
(Fmd5): Pass lisp objects, not integers, to call3.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 2 insertions, 1 deletions
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.")
5134 && !NILP (Ffboundp (Vselect_safe_coding_system_function))) 5134 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
5135 /* Confirm that VAL can surely encode the current region. */ 5135 /* Confirm that VAL can surely encode the current region. */
5136 coding_system = call3 (Vselect_safe_coding_system_function, 5136 coding_system = call3 (Vselect_safe_coding_system_function,
5137 b, e, coding_system); 5137 make_number (b), make_number (e),
5138 coding_system);
5138 5139
5139 if (force_raw_text) 5140 if (force_raw_text)
5140 coding_system = Qraw_text; 5141 coding_system = Qraw_text;