[slime-cvs] CVS slime
mkoeppe
mkoeppe at common-lisp.net
Thu Sep 6 21:22:19 UTC 2007
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv16540
Modified Files:
slime.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/slime.el 2007/09/05 12:02:24 1.850
+++ /project/slime/cvsroot/slime/slime.el 2007/09/06 21:22:19 1.851
@@ -2805,7 +2805,7 @@
(funcall slime-write-string-function string target))
(defun slime-repl-write-string (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