diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-11-26 21:19:41 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-11-26 21:19:41 -0800 |
commit | 35fe28a36f9355649f96fcd2cca28d92cebe3f65 (patch) | |
tree | 6ee8dc1a654496955380e17459f7d9b0f0a76f8c | |
parent | 0c211dec77716ecd06d8beb81f84167a5c4bc7c0 (diff) | |
download | teliva-35fe28a36f9355649f96fcd2cca28d92cebe3f65.tar.gz |
.
-rw-r--r-- | src/lua.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua.c b/src/lua.c index 9a57e52..04cbbaa 100644 --- a/src/lua.c +++ b/src/lua.c @@ -405,7 +405,7 @@ void save_to_current_definition_and_editor_buffer (lua_State *L, const char *def if (contents != NULL) fprintf(out, "%s", contents); fclose(out); - lua_settop(L, 0); + lua_settop(L, 0); /* reclaim contents */ } |