diff --git a/modules/lang/kotlin/autoload.el b/modules/lang/kotlin/autoload.el index a15620fed..2eee6cd90 100644 --- a/modules/lang/kotlin/autoload.el +++ b/modules/lang/kotlin/autoload.el @@ -1,7 +1,7 @@ ;;; lang/kotlin/autoload.el -*- lexical-binding: t; -*- ;;;autoload -(defun +kotlin/locate-gradlew-file () +(defun +kotlin-locate-gradlew-file () "Gradlew file location for this project." (locate-dominating-file buffer-file-name "gradlew")) @@ -9,7 +9,7 @@ (defun +kotlin/run-gradlew (command) "Run gradlew in this project." (interactive "sCommand: ") - (let ((default-directory (+kotlin/locate-gradlew-file)) + (let ((default-directory (+kotlin-locate-gradlew-file)) (compilation-read-command nil) (compile-command (format "sh gradlew %s" command))) (call-interactively #'compile)))