mirror of https://github.com/odrling/Aegisub
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:
parent
eb0cf90433
commit
c9e4cea8ad
|
@ -175,7 +175,7 @@ namespace Automation4 {
|
|||
luaL_where(L, 1);
|
||||
lua_insert(L, 1);
|
||||
lua_concat(L, 2);
|
||||
lua_error(L);
|
||||
throw error_tag{};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue