From b961e2af3f3e5091acd0cfba40df21d2ab6e8648 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Tue, 18 Jul 2017 19:39:55 +0200 Subject: [PATCH] fixlints --- autoscratch-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoscratch-mode.el b/autoscratch-mode.el index 16dbd20..72fe60a 100644 --- a/autoscratch-mode.el +++ b/autoscratch-mode.el @@ -195,7 +195,7 @@ to $mode-scratch." "If FORM is a function execute interactively, otherwise evaluate it. Executes `autoscratch-trigger-hook' after evaluation." (if (autoscratch--function-p form) - (funcall-interactively form) + (call-interactively form) (eval form)) (run-hooks 'autoscratch-post-trigger-hook) (message (format "autoscratch switched to %s" major-mode)))