diff options
| author | Richard M. Stallman | 2002-06-03 22:37:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-06-03 22:37:15 +0000 |
| commit | 1e59646d69096aca54f96acf0099f74f652c4a09 (patch) | |
| tree | c4f41551e508b7f06f4a3e26c23fcf45aec4a0c0 /src | |
| parent | 77218681255508a87b6820f460631a5b9f1d7954 (diff) | |
| download | emacs-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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; |