branch: elpa/geiser-kawa commit 91929a66678d8e476cc63ceb611eee6c970295ae Author: spellcard199 <spellcard...@protonmail.com> Commit: spellcard199 <spellcard...@protonmail.com>
Small naming change --- elisp/geiser-kawa.el | 5 +++-- quickstart.el | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/elisp/geiser-kawa.el b/elisp/geiser-kawa.el index cf7050b..3e8e3a3 100644 --- a/elisp/geiser-kawa.el +++ b/elisp/geiser-kawa.el @@ -73,8 +73,9 @@ ;; End of adaptations for making this package separate from geiser -;; Compile the included "kawa-geiser" maven project into a fat jar -(defun geiser-kawa-compile-java-dependencies() +;; Download, compile and package "kawa-geiser" and its recursive +;; dependencies into a fat jar. +(defun geiser-kawa-mvn-package-java-deps() (interactive) (let ((default-directory geiser-kawa-dir)) (compile "mvn package"))) diff --git a/quickstart.el b/quickstart.el index de38c0e..2ebafcb 100644 --- a/quickstart.el +++ b/quickstart.el @@ -17,4 +17,4 @@ (remove-hook 'compilation-finish-functions #'run-kawa-after-compilation-finishes)) (add-hook 'compilation-finish-functions #'run-kawa-after-compilation-finishes) -(geiser-kawa-compile-java-dependencies) +(geiser-kawa-mvn-package-java-deps)