Subject: Re: Returning the name of a function
From: Erik Naggum <erik@naggum.no>
Date: 2000/01/18
Newsgroups: comp.lang.lisp
Message-ID: <3157153555377756@naggum.no>

* "Coby Beck" <cbeck@mercury.bc.ca>
| Admittedly not a big deal in this example, but it got me curious.

  I suggest reading the manual on Allegro CL's TRACE top-level command.  as
  far as I understand your question, it does what you want, and much more.

  debugging by inserting code is generally considered to be very intrusive
  to the code in question, and even more unlikely to produce efficient
  bug-hunting.  consider ADVICE, TRACE, STEP, etc, instead.  debugging in
  Common Lisp and C are as different as the languages are.

#:Erik