Date: Wed, 22 Jul 1998 17:48:15 +0300 (IDT) From: Eli Zaretskii To: "Salvador Eduardo Tropea (SET)" cc: djgpp-workers AT delorie DOT com Subject: Re: Ispell and pipes In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 22 Jul 1998, Salvador Eduardo Tropea (SET) wrote: > I remmember I had some success using the Bill's driver that makes the > transfer buffer shared. But that's slow and needs the driver loaded. This mechanism will be used in interactive programs and in applications like an editor which lets the compiler run in the background. For example, Emacs' support for async subprocesses is implemented so that the output from a subprocess is only read if Emacs is idle. This means that if you are a very fast typist, or if you invoke a command that takes a long time to finish, you can almost block the compiler messages from being displayed in the compilation buffer. And yet when I use these Emacs facilities on Unix, I hardly see any slow-down. So I don't think speed is so much important in this case. > (I think CygWin support real pipes ;-). I don't intend to switch to Cygwin any time soon ;-).