diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c index 84cf5c8f34d..6875d4af823 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -8034,7 +8034,7 @@ decode_coding_gap (struct coding_system *coding, ptrdiff_t bytes) | |||
| 8034 | Fcons (undo_list, Fcurrent_buffer ())); | 8034 | Fcons (undo_list, Fcurrent_buffer ())); |
| 8035 | bset_undo_list (current_buffer, Qt); | 8035 | bset_undo_list (current_buffer, Qt); |
| 8036 | TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte); | 8036 | TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte); |
| 8037 | val = call1 (CODING_ATTR_POST_READ (attrs), | 8037 | val = calln (CODING_ATTR_POST_READ (attrs), |
| 8038 | make_fixnum (coding->produced_char)); | 8038 | make_fixnum (coding->produced_char)); |
| 8039 | CHECK_FIXNAT (val); | 8039 | CHECK_FIXNAT (val); |
| 8040 | coding->produced_char += Z - prev_Z; | 8040 | coding->produced_char += Z - prev_Z; |
| @@ -10871,10 +10871,10 @@ usage: (find-operation-coding-system OPERATION ARGUMENTS...) */) | |||
| 10871 | return Fcons (val, val); | 10871 | return Fcons (val, val); |
| 10872 | if (! NILP (Ffboundp (val))) | 10872 | if (! NILP (Ffboundp (val))) |
| 10873 | { | 10873 | { |
| 10874 | /* We use call1 rather than safe_call1 | 10874 | /* We use calln rather than safe_calln |
| 10875 | so as to get bug reports about functions called here | 10875 | so as to get bug reports about functions called here |
| 10876 | which don't handle the current interface. */ | 10876 | which don't handle the current interface. */ |
| 10877 | val = call1 (val, Flist (nargs, args)); | 10877 | val = calln (val, Flist (nargs, args)); |
| 10878 | if (CONSP (val)) | 10878 | if (CONSP (val)) |
| 10879 | return val; | 10879 | return val; |
| 10880 | if (SYMBOLP (val) && ! NILP (Fcoding_system_p (val))) | 10880 | if (SYMBOLP (val) && ! NILP (Fcoding_system_p (val))) |