The spree of latest commits for the new repl output code produced an incorrectly place paren in CLEAR-REPL-RESULTS, this patch fixes things
Index: swank.lisp =================================================================== RCS file: /project/slime/cvsroot/slime/swank.lisp,v retrieving revision 1.300 diff -u -r1.300 swank.lisp --- swank.lisp 19 May 2005 02:15:10 -0000 1.300 +++ swank.lisp 19 May 2005 21:03:09 -0000 @@ -1873,7 +1873,7 @@
(defslimefun clear-repl-results () "Forget the results of all previous REPL evaluations." - (setf *repl-results* '())) + (setf *repl-results* '()) t)
(defslimefun ed-in-emacs (&optional what)