[slime-cvs] CVS slime

CVS User sboukarev sboukarev at common-lisp.net
Sun Mar 21 12:41:09 UTC 2010


Update of /project/slime/cvsroot/slime
In directory cl-net:/tmp/cvs-serv16456

Modified Files:
	ChangeLog 
Added Files:
	start-swank.lisp 
Log Message:
* start-swank.lisp: New file for starting swank by simply doing
sbcl --load start-swank.lisp


--- /project/slime/cvsroot/slime/ChangeLog	2010/03/19 12:32:30	1.2043
+++ /project/slime/cvsroot/slime/ChangeLog	2010/03/21 12:41:09	1.2044
@@ -1,3 +1,8 @@
+2010-03-21  Stas Boukarev  <stassats at gmail.com>
+
+	* start-swank.lisp: New file for starting swank by simply loading
+	sbcl --load start-swank.lisp
+
 2010-03-19  Tobias C. Rittweiler <tcr at freebits.de>
 
 	* slime.el (slime-lisp-implementation-program): New connection

--- /project/slime/cvsroot/slime/start-swank.lisp	2010/03/21 12:41:09	NONE
+++ /project/slime/cvsroot/slime/start-swank.lisp	2010/03/21 12:41:09	1.1
;;; This file is intended to be loaded by an implementation to
;;; get a running swank server
;;; e.g. sbcl --load start-swank.lisp
;;;
;;; Default port is 4005
;;; Default encoding is "iso-latin-1-unix"
;;;  see Emacs variable `slime-net-valid-coding-systems' for possible values.

;;; For additional swank-side configurations see
;;; 6.2 section section of the Slime user manual.

(load (merge-pathnames "swank-loader.lisp" *load-truename*))

(swank-loader:init)

(swank:create-server :port 4005
                     :coding-system "iso-latin-1-unix"

                     ;; if non-nil the connection won't be closed
                     ;; after connecting
                     :dont-close nil)




More information about the slime-cvs mailing list