[slime-devel] Fix for incorrect parens

Lawrence Mitchell wence at gmx.li
Thu May 19 21:04:22 UTC 2005


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)

-- 
Lawrence Mitchell <wence at gmx.li>




More information about the slime-devel mailing list