emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/lua-mode cf076a6 460/468: Replace funcall-interactively ->


From: Philip Kaludercic
Subject: [nongnu] elpa/lua-mode cf076a6 460/468: Replace funcall-interactively -> call-interactively (for Emacs-24.3)
Date: Thu, 5 Aug 2021 04:59:29 -0400 (EDT)

branch: elpa/lua-mode
commit cf076a67551b5114a8078f767d0ca55e49a2843c
Author: immerrr <immerrr+lua@gmail.com>
Commit: immerrr <immerrr+lua@gmail.com>

    Replace funcall-interactively -> call-interactively (for Emacs-24.3)
---
 test/test-process.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/test-process.el b/test/test-process.el
index bedb11c..5f3870e 100644
--- a/test/test-process.el
+++ b/test/test-process.el
@@ -10,13 +10,13 @@
   (it "doesn't hang for an already-running process"
     ;; Acquire a *lua* repl buffer
     (save-current-buffer
-      (funcall-interactively #'lua-start-process)
+      (call-interactively #'lua-start-process)
       ;; Input some text
       (with-current-buffer lua-process-buffer
         (insert "table.insert"))
       (switch-to-buffer (get-buffer-create "*scratch*"))
       ;; Try restarting the repl buffer
-      (funcall-interactively #'lua-start-process)
+      (call-interactively #'lua-start-process)
 
       ;; `lua-start-process' shouldn't hang, and it should have switched back.
       (expect (current-buffer) :to-be lua-process-buffer))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]