diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index daa4e391744..0f1f702a348 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2828,11 +2828,11 @@ read_process_output (proc, channel) | |||
| 2828 | valid memory because p->outfd will be changed once EOF is | 2828 | valid memory because p->outfd will be changed once EOF is |
| 2829 | sent to the process. */ | 2829 | sent to the process. */ |
| 2830 | if (NILP (p->encode_coding_system) | 2830 | if (NILP (p->encode_coding_system) |
| 2831 | && proc_encode_coding_system[p->outfd]) | 2831 | && proc_encode_coding_system[XINT (p->outfd)]) |
| 2832 | { | 2832 | { |
| 2833 | p->encode_coding_system = coding->symbol; | 2833 | p->encode_coding_system = coding->symbol; |
| 2834 | setup_coding_system (coding->symbol, | 2834 | setup_coding_system (coding->symbol, |
| 2835 | proc_encode_coding_system[p->outfd]); | 2835 | proc_encode_coding_system[XINT (p->outfd)]); |
| 2836 | } | 2836 | } |
| 2837 | } | 2837 | } |
| 2838 | 2838 | ||