On Thu, Mar 08, 2007 at 02:27:35PM +0200, [EMAIL PROTECTED] wrote:
> 
> I did stumble upon some issues - simply a buglet in OSProcess (probably
> the latest release, since it was not there in december when I tested the
> Linux port the first time) causing issues with swish-e and graphviz. But
> eventually I solved that.
 
G?ran,

Thanks for letting me know about the OSProcess problem, as well as pointing
out the fix in your separate email.

I put a fix into CommandShell that addresses the problem, and released
the new version on SqueakMap. GraphViz seems to work fine now with
this patch applied.

The actual change I made was in PipeableOSProcess>>close, which is now:

  close
    "Close pipe to child stdin."
    pipeToInput ifNotNil: [pipeToInput close]

rather than the previous version:

  close
    "Close pipe to child stdin."
    (pipeToInput notNil and: [pipeToInput closed not])
      ifTrue: [pipeToInput close]

Thanks a lot,

Dave

_______________________________________________
Setools mailing list
[email protected]
http://lists.squeakfoundation.org/mailman/listinfo/setools

Reply via email to