From f84c6f66f6ee696a37e2c89b3ca924be7f0916cf Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Sun, 27 Nov 2022 22:30:06 +0300 Subject: [PATCH] Use "call-interactively" when executing a command in a window * ace-window.el (aw-execute-command-other-window): Replace funcall with call-interactively. --- ace-window.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ace-window.el b/ace-window.el index ccb2783..a879de1 100644 --- a/ace-window.el +++ b/ace-window.el @@ -870,7 +870,7 @@ Modify `aw-fair-aspect-ratio' to tweak behavior." "Execute a command in WINDOW." (aw-switch-to-window window) (unwind-protect - (funcall + (call-interactively (key-binding (read-key-sequence "Enter key sequence: ")))