>4. Can the debugger reuse the CLI, Local Variables, Threads, and debug
>Process buffers? They tend to build up over time.
>
Yes. I could make this an option I suppose.
I have the following bound to f12
(defun myjde-bug-kill-debugger()
"Exit the debugger and kill all dead process buffers."
(interactive)
(progn
(jde-bug-exit)
(jde-bug-remove-dead-processes)
(delete-other-windows)))
>>6. I get a java window when running JDEbug, and I think it's from the
>>debugger, not the debuggee as it is still present after the debuggee
>>terminates. Could this use javaw or, alternately, minimize the window?
>>
>
>Set jde-run-java-vm-w to javaw. This is the default by the way. You must
>have changed it when you were using NT/XEmacs.
I would actually preferr to let this window run if the CLI output would go
there instead. I don't know if this is an option or not.
Also, I've run into a problem that I can't seem to figure out. I have a
program that runs fine without the debugger or when the debugger is set to
the old standard jdb but under JDEBug I get an "abnormal termination" after
then program runs for a short time (that is, it starts fine and even prints
output, but then it sudennly exits). The problem doesn't seem to originate
from any of my threads, I'm guessing perhaps one of the debugger threads is
exiting. In any case, if someone has seen this and knows what the problem
might be, I'd appreciate a hint. Thanks.
Jim