Comment 5 for bug 667657

Revision history for this message
Nikodemus Siivola (nikodemus) wrote :

Yep.

CL-USER> (defun foo () t)
FOO
CL-USER> (trace foo)
(FOO)
CL-USER> (fmakunbound 'foo)
FOO
CL-USER> (untrace)
T
CL-USER> (trace)
(FOO)