about summary refs log tree commit diff stats
path: root/src/lua.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-01-02 15:15:10 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-01-02 15:15:10 -0800
commitf7b44134945fb46bf59ddfd4fe0d3d2778f29354 (patch)
tree7885aa33acf38a9578fda90ab537a1840be435a0 /src/lua.c
parent762b77f68b57d28acb891364b57a7593759ac759 (diff)
downloadteliva-f7b44134945fb46bf59ddfd4fe0d3d2778f29354.tar.gz
.
Diffstat (limited to 'src/lua.c')
-rw-r--r--src/lua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua.c b/src/lua.c
index eedfb33..08a16a3 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -209,7 +209,7 @@ static int pmain (lua_State *L) {
   globalL = L;
   if (argv[0] && argv[0][0]) progname = argv[0];
   lua_gc(L, LUA_GCSTOP, 0);  /* stop collector during initialization */
-  luaL_openlibs(L);  /* open libraries */
+  luaL_openlibs(L);
   status = dorequire(L, "src/lcurses/curses.lua", "curses");
   if (status != 0) return 0;
   status = dorequire(L, "src/luasocket/socket.lua", "socket");