David Steuber david@david-steuber.com writes:
In current CVS HEAD using Carbon Emacs from CVS (2004-10-29) and OpenMCL I'm thrown immediately into the debugger when I do M-x slime. a does not get me out:
try this patch:
--- swank-openmcl.lisp 17 Nov 2004 15:17:26 -0000 1.89 +++ swank-openmcl.lisp 19 Nov 2004 15:49:26 -0000 @@ -143,7 +143,7 @@ (setq ccl::*interactive-abort-process* ccl::*current-process*))
(defimplementation make-stream-interactive (stream) - (push stream ccl::*auto-flush-streams*)) + nil)
;;; Unix signals
the problem is that stream is a gray-stream, and openmcl doesn't take well to having a gray-stream on ccl::*auto-flush-streams*. i don't know what _should_ be done though (there must be something better than doing nothing).