aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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;