Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions jdee-backend.el
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,13 @@ defined, otherwise the classpath specified by the CLASSPATH
environment variable."
(let* ((directory-sep-char ?/) ;; Override NT/XEmacs setting
(classpath
(jdee-build-path-arg nil (jdee-get-global-classpath) t 'jdee-global-classpath)))
(format "jde.util.JdeUtilities.setProjectValues(\"%s\", %s);"
(jdee-build-path-arg nil (jdee-get-global-classpath) t 'jdee-global-classpath))
(sourcepath
(jdee-build-path-arg nil jdee-sourcepath t 'jdee-sourcepath)))
(format "jde.util.JdeUtilities.setProjectValues(\"%s\", %s, %s);"
jdee-current-project
classpath)))
classpath
sourcepath)))

(defun jdee-backend-launch ()
"Start JVM backend if it's not rurnnig."
Expand Down