[slime-cvs] CVS slime
heller
heller at common-lisp.net
Tue Nov 21 20:35:44 UTC 2006
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv9898
Modified Files:
swank.lisp
Log Message:
(*coding-system*): "Coding systems" are now strings instead of
keywords. Set it to "iso-latin-1-unix".
--- /project/slime/cvsroot/slime/swank.lisp 2006/11/19 21:27:35 1.418
+++ /project/slime/cvsroot/slime/swank.lisp 2006/11/21 20:35:44 1.419
@@ -182,8 +182,6 @@
;;; used solely to pipe user-output to Emacs (an optimization).
;;;
-(defvar *coding-system* ':iso-latin-1-unix)
-
(defstruct (connection
(:conc-name connection.)
(:print-function print-connection))
@@ -412,6 +410,8 @@
"The buffering scheme that should be used for the output stream.
Valid values are :none, :line, and :full.")
+(defvar *coding-system* "iso-latin-1-unix")
+
(defun start-server (port-file &key (style *communication-style*)
(dont-close *dont-close*)
(coding-system *coding-system*))
More information about the slime-cvs
mailing list