SLIME is getting better. Today I discovered that it shows the arguments for the local functions defined with flet.
I.e., given the following code:
(defun foobar ()
(flet ((bar (x y z) (+ x y z)))
(bar )))
if I put the cursor after the (bar , the minibuffer will display (bar x y z).
