All pastes #1806753 Raw Edit

Anonymous

public text v1 · immutable
#1806753 ·published 2010-02-23 13:35 UTC
rendered paste body
(defvar clj-cmd)
(setenv "CLJ_CMD"
        (setq clj-cmd
              (concat "java "
                      "-server "
                      "-Xmx512m -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8888 "
                      "-cp "
                      (string-join ":"
                                   (append
                                    (file-expand-wildcards (concat clojure-home "*.jar"))
                                    (file-expand-wildcards "./" t)
                                    ))
                      " clojure.main")))