Merge pull request #2253 from EngineerSmith/errorhandler-bug

Minor Bug Fix: Ensure full traceback is processed by appending a newline
This commit is contained in:
Sasha Szpakowski
2025-11-21 23:24:07 -04:00
committed by GitHub
+1 -1
View File
@@ -274,7 +274,7 @@ function love.errorhandler(msg)
table.insert(err, "\n")
for l in trace:gmatch("(.-)\n") do
for l in trace:gmatch("([^\n]+)") do
if not l:match("boot.lua") then
l = l:gsub("stack traceback:", "Traceback\n")
table.insert(err, l)