From 76fb819dfb8d838ec7796e87b332f19b23d7c70d Mon Sep 17 00:00:00 2001 From: Oleksii Filonenko Date: Thu, 11 Apr 2019 10:16:53 +0300 Subject: [PATCH] Rename non-interactive function `+kotlin-locate-gradlew-file` --- modules/lang/kotlin/autoload.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)))