I use sbcl+emacs+slime
.
I writing a function in lisp,
I use C-c C-c
compile, but i've already deleted it.
I can't find it. I want to know how I define it.
I tried use function-lambda-expression
, but I get this:
(function-lambda-expression #'b)
T
B
I hope someone can give me some help.Thanks very much in advance!
Thanks Vsevolod.
If function define in repl
, i can use (descri #'function-name)
get how i define the function, but if i through C-c C-c
define it, i just get source file
Depending on your settings for debug and optimization you may be able to get it via
describe
:You can see the definition here in the
Souce form
part.