At 10:03 PM 4/30/98 +0400, Kirill M. Katsnelson wrote:
I think that 'undecided should be the default always, not only in
cygwin case. I have changed this for asynchronous processes for
beta34 or around, and no one have seen any misbehavior or something,
except for eterm "ladder" problem (which of course should be fixed
in eterm - it *wants* untarnaslated CR-LF, so must explicitly claim that).
Basically, a good lisp code should not rely on coding-system-for-*
being 'binary; for example, code which runs zcat in about.el correctly
binds these variables to 'binary.
I concur. Could you apply this patch instead please Steve.
andy
1998-04-29 Andy Piper <andyp(a)parallax.co.uk>
* code-process.el (call-process): dynamically decide process
coding type.
Index: lisp/code-process.el
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs-20/lisp/code-process.el,v
retrieving revision 1.3
diff -u -r1.3 code-process.el
--- code-process.el 1998/04/11 05:36:53 1.3
+++ code-process.el 1998/05/01 02:29:51
@@ -77,6 +77,7 @@
(setq ret (funcall ret 'call-process program))
)
(cond ((consp ret) (car ret))
+ ((not ret) 'undecided)
((find-coding-system ret) ret)
)
))))