diff options
| author | Ken Raeburn | 2000-12-04 00:28:04 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2000-12-04 00:28:04 +0000 |
| commit | 70da6a764fd934aa75288bf428381c7009f44ed5 (patch) | |
| tree | 3b0e6c59fcfd8104cf1dc53ce134cd7c8a472c3c /src | |
| parent | 6dd241868ee68c373fd2f294ce19a69e33a400d4 (diff) | |
| download | emacs-70da6a764fd934aa75288bf428381c7009f44ed5.tar.gz emacs-70da6a764fd934aa75288bf428381c7009f44ed5.zip | |
(Fmd5): Pass lisp objects, not integers, to call3.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -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; |