diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index 09d0ec68de0..f30942e3227 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -3050,10 +3050,10 @@ setup_coding_system (coding_system, coding) | |||
| 3050 | if (CONSP (val) | 3050 | if (CONSP (val) |
| 3051 | && SYMBOLP (XCONS (val)->car) | 3051 | && SYMBOLP (XCONS (val)->car) |
| 3052 | && !NILP (decoder = Fget (XCONS (val)->car, Qccl_program_idx)) | 3052 | && !NILP (decoder = Fget (XCONS (val)->car, Qccl_program_idx)) |
| 3053 | && (decoder = Fcdr (Faref (Vccl_program_table, decoder))) | 3053 | && !NILP (decoder = Fcdr (Faref (Vccl_program_table, decoder))) |
| 3054 | && SYMBOLP (XCONS (val)->cdr) | 3054 | && SYMBOLP (XCONS (val)->cdr) |
| 3055 | && !NILP (encoder = Fget (XCONS (val)->cdr, Qccl_program_idx)) | 3055 | && !NILP (encoder = Fget (XCONS (val)->cdr, Qccl_program_idx)) |
| 3056 | && (encoder = Fcdr (Faref (Vccl_program_table, encoder)))) | 3056 | && !NILP (encoder = Fcdr (Faref (Vccl_program_table, encoder)))) |
| 3057 | { | 3057 | { |
| 3058 | setup_ccl_program (&(coding->spec.ccl.decoder), decoder); | 3058 | setup_ccl_program (&(coding->spec.ccl.decoder), decoder); |
| 3059 | setup_ccl_program (&(coding->spec.ccl.encoder), encoder); | 3059 | setup_ccl_program (&(coding->spec.ccl.encoder), encoder); |