This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch efl
in repository laugh.
View the commit online.
commit d8eaa103cb1630db039b71730277fb7eb9f0547e
Author: melerva <[email protected]>
AuthorDate: Sun Sep 21 11:29:57 2025 -0400
Finally figured out what ERRERR means
According to the Lua 5.4 sources, there's only two instances where it
triggers and both are in error handlers, so that's that mystery solved!
---
src/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.c b/src/main.c
index 946825c..3945b6b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -191,7 +191,7 @@ int main(const int argc, char *const argv[]) {
fprintf(stderr, "out of memory\n");
break;
case LUA_ERRERR:
- fprintf(stderr, "error errored: %s\n", lua_tostring(L, -1));
+ fprintf(stderr, "error handling error: %s\n", lua_tostring(L, -1));
break;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.