Slime: frame-source-location not implemented / is this my sldb Is the return output normal?

I am debugging my (generic) Lisp code in Slime bound to clisp.

When the debugger generates Backtrace, my underestimation is that I can press "v" on the frame to take me to the source code.

However, when I do this on any frame, I get:

frame-source-location not implemented

Is this expected, am I missing something?

Edit1 . In addition, each individual frame has "No Locals", is this also to be expected?

Edit2 . In fact, the whole output of backtrace is pretty obscure. I am new to Lisp, so I was not sure if this was expected or not, but I am attaching a screenshot, I hope someone can confirm me if this looks “normal”:

alt text

Edit3 I assume it is connected

+3
1

, , , , Slime clisp , .

, Steel Bank Common Lisp (sbcl), , ( Ubuntu/Debian)

sudo apt-get install sbcl

Slime, clisp:

.emacs:

;;; Lisp (SLIME) interaction 
;;(setq inferior-lisp-program "clisp") 
(setq inferior-lisp-program "sbcl")

:

alt text

0

Source: https://habr.com/ru/post/1784098/


All Articles