Unless there are objections, I will make the change below in SLIME CVS.
2007-12-12 Matthias Koeppe mkoeppe@mail.math.uni-magdeburg.de
* slime.el (slime-repl-mode-map): Bind C-c C-t to slime-toggle-trace-fdefinition (as in Lisp buffers) instead of slime-repl-clear-buffer. This binding is useful for untracing functions directly from the trace output.
--- slime.el.~1.882.~ 2007-12-11 17:20:50.000000000 +0100 +++ slime.el 2007-12-12 13:57:41.509816000 +0100 @@ -2873,7 +2873,7 @@ ("\C-c\C-w" slime-who-map) ("\C-\M-x" 'slime-eval-defun) ("\C-c\C-o" 'slime-repl-clear-output) - ("\C-c\C-t" 'slime-repl-clear-buffer) + ("\C-c\C-t" 'slime-toggle-trace-fdefinition) ("\C-c\C-u" 'slime-repl-kill-input) ("\C-c\C-n" 'slime-repl-next-prompt) ("\C-c\C-p" 'slime-repl-previous-prompt)
Matthias