File: 0001-Change-lua-default-application-for-inferior-process-.patch

package info (click to toggle)
lua-mode 20151025-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 268 kB
  • sloc: lisp: 2,534; makefile: 33
file content (26 lines) | stat: -rw-r--r-- 809 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: Hilko Bengen <bengen@debian.org>
Date: Thu, 3 Aug 2017 00:26:11 +0200
Subject: Change lua-default-application for inferior-process test

---
 test/test-inferior-process.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/test-inferior-process.el b/test/test-inferior-process.el
index 2fedd29..4fb9ce7 100644
--- a/test/test-inferior-process.el
+++ b/test/test-inferior-process.el
@@ -5,6 +5,7 @@
 (require 'cl-lib)
 
 
+(setq lua-default-application "lua5.3")
 
 (describe "Hiding process buffer does not switch current window"
   (it "when process is active"
@@ -141,4 +142,4 @@ function () end
         (when buf
           (kill-buffer buf))
         (delete-file fname)
-        (kill-buffer "*lua*")))))
+        (kill-buffer (concat "*" lua-default-application "*"))))))