From aa9c510f37b7cc60156af717121c5256e7be49f1 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Mon, 16 May 2022 00:57:32 +0200 Subject: [PATCH] minor fix --- ISBPL.java | 1 + 1 file changed, 1 insertion(+) diff --git a/ISBPL.java b/ISBPL.java index cf8a532..05dac15 100644 --- a/ISBPL.java +++ b/ISBPL.java @@ -1461,6 +1461,7 @@ public class ISBPL { public void interpret(File file, String code, Stack stack) { if(code.startsWith("#!")) code = code.substring(code.indexOf("\n") + 1); + debuggerIPC.stack.put(Thread.currentThread().getId(), stack); fileStack.get().push(file); code = cleanCode(code); String[] words = splitWords(code);