From e9c509cd7666ded9ae7239c64dd88993d58802da Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 1 Sep 1997 07:15:46 +0000 Subject: [PATCH] (read_process_output): Index for proc_encode_coding_system should be p->outfd (not `channel' which is p->infd). --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index c5d291bec8e..7d84a7ce74c 100644 --- a/src/process.c +++ b/src/process.c @@ -2775,7 +2775,7 @@ read_process_output (proc, channel) { p->encode_coding_system = coding->symbol; setup_coding_system (coding->symbol, - proc_encode_coding_system[channel]); + proc_encode_coding_system[p->outfd]); } } #ifdef VMS -- 2.39.2