>>>>> "Craig" == Craig Lanning <[EMAIL PROTECTED]> writes:
>> You do know about the frame and source debugger commands? "Frame"
>> (along with up and down) will move you to the desired stack frame.
>> "Source" will print out the source code (if possible) where the error
>> occurred. These might help you locate the offending source code.
Craig> I knew about up ("u"), down ("d"), and locals ("l"). "source" shows
Craig> code the the "#" ellipses so it's not very useful. Is there a way to
Craig> force "source" show all of the code?
One, some, or all of the following changes this behavior. I can never
remember for sure. It's probably the debug ones.
*print-length*
*print-level*
debug:*debug-print-length*
debug:*debug-print-level*
Hopefully, this will help you figure out what the problem is or
pinpoint the issue to something the compiler is doing wrong.
Ray