From 7038cf41d69bcf7d57669a64f929521ab86bb0b1 Mon Sep 17 00:00:00 2001 From: Carlo Sciolla Date: Tue, 14 Jul 2015 17:02:09 +0200 Subject: [PATCH] Allow for customisable jar location --- puml-mode.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/puml-mode.el b/puml-mode.el index 84a6d0e..14b1049 100644 --- a/puml-mode.el +++ b/puml-mode.el @@ -39,11 +39,13 @@ "Major mode for editing plantuml file." :group 'languages) -(defvar puml-plantuml-jar-path (expand-file-name "~/plantuml.jar")) +(defcustom puml-plantuml-jar-path + (expand-file-name "~/plantuml.jar") + "The location of the PlantUML executable JAR.") (defvar puml-mode-hook nil "Standard hook for puml-mode.") -(defvar puml-mode-version nil "The puml-mode version string.") +(defvar puml-mode-version "0.4" "The puml-mode version string.") (defvar puml-mode-map nil "Keymap for puml-mode.")