trace


(trace [ functionA [ functionB ... ] ] )

This function marks the specified functionA, functionB, ... to be traced.

Arguments

functionA  (symbol name, optional) name of a function to be traced
functionB  (symbol name, optional) name of a function to be traced
:

Return

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

Example

(defun test () (print "test function"))
(trace test)

Remarks

see (untrace) function



©  Bricsys NV. All rights reserved.