summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2024-03-21 15:19:34 +0100
committerGitHub <noreply@github.com>2024-03-21 15:19:34 +0100
commit8fe13074a7d9fdd88c5423d1e9c5fcc4ec43a57b (patch)
tree2a01a4b5199f21a8e7bb36f7bf583ac56ebef4b9 /src
parent5901a1372251e760c2451287ad7a351ae70afb14 (diff)
downloadluasystem-8fe13074a7d9fdd88c5423d1e9c5fcc4ec43a57b.zip
chore(config): update editorconfig (#20)
Lua was duplicated and C was missing. Updated the 1 C file that deviated in whitespace as well.
Diffstat (limited to 'src')
-rw-r--r--src/compat.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/compat.c b/src/compat.c
index d763c56..6f98854 100644
--- a/src/compat.c
+++ b/src/compat.c
@@ -3,15 +3,15 @@
#if LUA_VERSION_NUM == 501
void luaL_setfuncs(lua_State *L, const luaL_Reg *l, int nup) {
- luaL_checkstack(L, nup+1, "too many upvalues");
- for (; l->name != NULL; l++) { /* fill the table with given functions */
- int i;
- lua_pushstring(L, l->name);
- for (i = 0; i < nup; i++) /* copy upvalues to the top */
- lua_pushvalue(L, -(nup+1));
- lua_pushcclosure(L, l->func, nup); /* closure with those upvalues */
- lua_settable(L, -(nup + 3));
- }
- lua_pop(L, nup); /* remove upvalues */
+ luaL_checkstack(L, nup+1, "too many upvalues");
+ for (; l->name != NULL; l++) { /* fill the table with given functions */
+ int i;
+ lua_pushstring(L, l->name);
+ for (i = 0; i < nup; i++) /* copy upvalues to the top */
+ lua_pushvalue(L, -(nup+1));
+ lua_pushcclosure(L, l->func, nup); /* closure with those upvalues */
+ lua_settable(L, -(nup + 3));
+ }
+ lua_pop(L, nup); /* remove upvalues */
}
#endif