untrace


(untrace [ functionA [ functionB ... ] ] )

This function removes the functions functionA, functionB ...  from tracing.

Arguments

functionA  (symbol name, optional) name of a function to be removed from tracing
functionB  (symbol name, optional) name of a function to be removed from tracing
:

Return

the last argument item passed into (untrace);
if no argument is provided, (untrace) does nothing and returns NIL

Example

(defun test () (print "test function"))
(untrace test)

Remarks

see (trace) function



©  Bricsys NV. All rights reserved.