[slime-cvs] CVS slime

alendvai alendvai at common-lisp.net
Mon Dec 11 12:44:02 UTC 2006


Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv29539

Modified Files:
	.cvsignore swank.lisp 
Log Message:
FIX: Drop #\. and add #\, to escaped symbol chars


--- /project/slime/cvsroot/slime/.cvsignore	2004/09/15 11:29:05	1.3
+++ /project/slime/cvsroot/slime/.cvsignore	2006/12/11 12:44:02	1.4
@@ -2,3 +2,4 @@
 *.fasl
 *.dfsl
 *.elc
+_darcs
--- /project/slime/cvsroot/slime/swank.lisp	2006/12/07 11:09:19	1.422
+++ /project/slime/cvsroot/slime/swank.lisp	2006/12/11 12:44:02	1.423
@@ -3264,7 +3264,7 @@
         (case-converter-with-escaping (completion-output-case-converter input t)))
     (lambda (str)
       (if (some (lambda (el)
-                  (member el '(#\: #\. #\  #\Newline #\Tab)))
+                  (member el '(#\: #\, #\  #\Newline #\Tab)))
                 str)
           (concatenate 'string "|" (funcall case-converter-with-escaping str) "|")
           (funcall case-converter str)))))




More information about the slime-cvs mailing list