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
1 changed files with 1 additions and 1 deletions

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{};
}
}