1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

Fix handling for automation debug formatting errors

One spot was missed when converting stuff over to using error_Tag rather
than lua_error for stack unwinding on errors.
This commit is contained in:
Thomas Goyne 2014-07-26 20:38:07 -07:00
parent eb0cf90433
commit c9e4cea8ad

View File

@ -175,7 +175,7 @@ namespace Automation4 {
luaL_where(L, 1);
lua_insert(L, 1);
lua_concat(L, 2);
lua_error(L);
throw error_tag{};
}
}