[slime-cvs] CVS slime/contrib
    mkoeppe 
    mkoeppe at common-lisp.net
       
    Thu Sep  6 21:22:26 UTC 2007
    
    
  
Update of /project/slime/cvsroot/slime/contrib
In directory clnet:/tmp/cvs-serv16614/contrib
Modified Files:
	slime-presentations.el 
Log Message:
(slime-repl-write-string): Use case, not ecase, for dispatching
targets.Should fix XEmacs compatibility.  Reported by Steven
E. Harris.
--- /project/slime/cvsroot/slime/contrib/slime-presentations.el	2007/09/04 09:42:42	1.6
+++ /project/slime/cvsroot/slime/contrib/slime-presentations.el	2007/09/06 21:22:26	1.7
@@ -555,7 +555,7 @@
     (t nil)))
 
 (defun slime-presentation-write (string &optional target)
-  (ecase target
+  (case target
     ((nil)                              ; Regular process output
      (with-current-buffer (slime-output-buffer)
        (slime-with-output-end-mark
    
    
More information about the slime-cvs
mailing list