How do I stop tracing a function in clisp?

common-lisp, lisp, trace

Solution

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

(untrace example)

Problem

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?

Original source