views:

56

answers:

2

I've been tracing a function example with this call

(trace example)

and now I wish to stop tracing it, how can I do this?

+4  A: 

Use the untrace.

dmitry_vk
+7  A: 

In common lisp it's as easy as calling untrace:

(untrace example)
Johan Kullbom
Thank you. I was thinking stop-trace or something. Didn't think og the un- construction.
Flame