Pin/Unpin ObjectId, error message stackcall processed correctly

This commit is contained in:
Josef Vlach
2020-10-11 09:35:33 +01:00
parent 7375291bca
commit 58ef86f8d3
4 changed files with 809 additions and 692 deletions

View File

@@ -76,8 +76,8 @@ The output of the process will be provided in a buffer named
(unless (get-process (gdscript-debug-process-name (gdscript-util--find-project-configuration-file)))
(gdscript-debug-make-server))
(push (mapconcat (lambda (breakpoint)
(let ((file (breakpoint->file breakpoint))
(line (breakpoint->line breakpoint)))
(let ((file (gdscript-breakpoint->file breakpoint))
(line (gdscript-breakpoint->line breakpoint)))
(format "%s:%s" file line))) gdscript-debug--breakpoints ",") args)
(push "--breakpoints" args)
(push (format "127.0.0.1:%s" gdscript-debug-port) args)