You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defun fibonacci (n &optional (a 0) (b 1) (acc ()))
(if (zerop n)
(nreverse acc)
(fibonacci (1- n) b (+ a b) (cons a acc)))) <--- SET TRACE HERE WITH <leader>tt
(fibonacci 5) <--- eval with <leader>ii/ie
But I never see the trace dialog, actually. Though I get the results of evaluation just fine.
If I set (trace fibonacci) in code I get the actual trace:
Hello,
I am trying to trace a function but cannot get trace results.
Here is my config part:
I can load the file, let us say
But I never see the trace dialog, actually. Though I get the results of evaluation just fine.
If I set
(trace fibonacci)
in code I get the actual trace:The text was updated successfully, but these errors were encountered: