Thanks that's exactly what I was looking for, don't know how I missed it.<br><br><div class="gmail_quote">On Tue, Aug 2, 2011 at 10:15 AM, Helmut Eller <span dir="ltr"><<a href="mailto:heller@common-lisp.net">heller@common-lisp.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><div></div><div class="h5">* Andrew Myers [2011-08-02 13:34] writes:<br>
<br>
> Hello everyone,<br>
> I work on a Lisp project using Allegro Common Lisp and recently started<br>
> investigating using SLIME instead of the Franz's package.  I had tried to do<br>
> this about a year ago when I started this job but for various reasons never<br>
> pursued it very far.  I much prefer SLIME over the Franz package and have<br>
> most of the functionality I'm used to working already with the exception of<br>
> multiprocessing debugging.<br>
><br>
> We have a few other threads running using the Franz Multiprocessing API but<br>
> when using SLIME the output from these threads (both stdout and trace output)<br>
> only goes to the *inferior-lisp* buffer, it does not show up in the SLIME<br>
> repl.  Can anyone point me to documentation on how to fix this?  I've been<br>
> looking through the SLIME manual and online but haven't been able to find<br>
> anything yet.<br>
<br>
</div></div>If the output actually shows up in the *inferior-lisp* buffer then the<br>
easiest fix is:  M-x slime-redirect-inferior-output<br>
This is an Emacs-side only solution and doesn't involve the Lisp-side.<br>
<br>
On the Lisp-side you can set SWANK:*GLOBALLY-REDIRECT-IO* in your<br>
~/.swank.lisp.  That should be documented in the manual.<br>
<br>
The stream to Emacs can be obtained with<br>
    (swank::connnection.user-io (swank::default-connection))<br>
Perhaps you can to use that for your own tricks, e.g. with<br>
mp:process-interrupt.<br>
<br>
Helmut<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
slime-devel site list<br>
<a href="mailto:slime-devel@common-lisp.net">slime-devel@common-lisp.net</a><br>
<a href="http://common-lisp.net/mailman/listinfo/slime-devel" target="_blank">http://common-lisp.net/mailman/listinfo/slime-devel</a><br>
</blockquote></div><br>