How to force trace to trace recursive calls? (Simplified) example:
* (defun silnia (n) (if (= n 1) 1 (* n (silnia (- n 1))))) SILNIA * (trace silnia) (SILNIA) * (silnia 4) 0: (SILNIA 4) 0: SILNIA returned 24 24 I would like to see all internal calls traced. Regards, Zbyszek Jurkiewicz