#26 Use a custom variable for which java command to use to fire up PlantUML

This commit is contained in:
Carlo Sciolla 2016-10-14 15:37:02 +02:00
parent cba96b7204
commit a324da362a
1 changed files with 4 additions and 2 deletions

View File

@ -68,7 +68,9 @@
keymap)
"Keymap for plantuml-mode.")
(defvar plantuml-run-command "java -jar %s")
(defcustom plantuml-java-command "java" "The java command used to execute PlantUML.")
(defvar plantuml-run-command (concat plantuml-java-command " -jar %s"))
(defun plantuml-render-command (&rest arguments)
"Create a command line to execute PlantUML with arguments (as ARGUMENTS)."
@ -219,7 +221,7 @@ to choose where to display it:
(coding-system-for-write (and imagep 'binary)))
(let ((ps (start-process "PLANTUML" buf
"java" "-jar" (shell-quote-argument plantuml-jar-path)
plantuml-java-command "-jar" (shell-quote-argument plantuml-jar-path)
(plantuml-output-type-opt) "-p")))
(process-send-string ps string)
(process-send-eof ps)