aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-06-03 22:37:15 +0000
committerRichard M. Stallman2002-06-03 22:37:15 +0000
commit1e59646d69096aca54f96acf0099f74f652c4a09 (patch)
treec4f41551e508b7f06f4a3e26c23fcf45aec4a0c0 /src
parent77218681255508a87b6820f460631a5b9f1d7954 (diff)
downloademacs-1e59646d69096aca54f96acf0099f74f652c4a09.tar.gz
emacs-1e59646d69096aca54f96acf0099f74f652c4a09.zip
(md5): Pass FILE arg to Vselect_safe_coding_system_function.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 51e3319f871..ad5cd943d62 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -5351,9 +5351,9 @@ guesswork fails. Normally, an error is signaled in such case. */)
5351 if (!force_raw_text 5351 if (!force_raw_text
5352 && !NILP (Ffboundp (Vselect_safe_coding_system_function))) 5352 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
5353 /* Confirm that VAL can surely encode the current region. */ 5353 /* Confirm that VAL can surely encode the current region. */
5354 coding_system = call3 (Vselect_safe_coding_system_function, 5354 coding_system = call4 (Vselect_safe_coding_system_function,
5355 make_number (b), make_number (e), 5355 make_number (b), make_number (e),
5356 coding_system); 5356 coding_system, Qnil);
5357 5357
5358 if (force_raw_text) 5358 if (force_raw_text)
5359 coding_system = Qraw_text; 5359 coding_system = Qraw_text;