Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 7 down vote accepted

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

(untrace example)
share|improve this answer
Thank you. I was thinking stop-trace or something. Didn't think og the un- construction. – Flame Jan 27 '10 at 20:03

Use the untrace.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.