Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
15 lines
467 B
Text
15 lines
467 B
Text
Swank Clojure is a server that allows SLIME (the Superior Lisp
|
|
Interaction Mode for Emacs) to connect to Clojure projects.
|
|
|
|
To use it you must launch a swank server, then connect to it from
|
|
within Emacs using M-x slime-connect.
|
|
|
|
For example:
|
|
|
|
(ns user (:use [swank.swank :as swank]))
|
|
|
|
(clojure.main/with-bindings
|
|
(swank/ignore-protocol-version "2010-06-04")
|
|
(swank/start-server "/dev/null" :port 4005))
|
|
|
|
Just replace "user" with your preferred namespace.
|