Some time ago, Hrvoje Niksic wrote...
"Kirill 'Big K' Katsnelson" <kkm(a)dtmx.com>
writes:
> One correction, I am going to remove this variable by release time,
> not obsolete it.
Are you sure that's a good idea? Do you think there's code that
depends on it?
Code cannot depend on it: This variable is to be bound, not set by
design. If changing the value of this variable changes really nothing,
then the following binding is really a no-op:
(let ((binary-process-output sometihng)) (do-this and that))
Code can depend on its *functionality* but not on its *existence*.
Big K