Replies: 3 comments
-
Hello @rpgoldman, I'm afraid I'm kind of detached from Common Lisp and Allegro at the moment. I can tell you that the But do try out things and report back here with some ideas or maybe a patch. If you're interested in an alternative CL portable stepper that is known to work with SLY and Allegro, see https://github.com/joaotavora/sly-stepper (and the supporting ELS paper, if you're curious) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to make the debugger part of the SLY backend for Allegro more capable.
The debugger for Allegro is one of its best features, but neither SLY nor SLIME makes very effective use of it.
I was trying to add the unimplemented interface
sly-db-break-on-return
. This seems to require doing(top-level:do-command :boe)
. Unfortunately, using a top-level command does not seem to work; even wrapped indebugger:eval-form-in-context
, I get an error aboutNon-structure argument NIL passed to ref of structure slot 14
.Is it possible to use
top-level:do-command
with the SLY repl? If not, any idea how to get access to debugger functions?Beta Was this translation helpful? Give feedback.
All reactions