about summary refs log tree commit diff stats
path: root/src/linit.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-20 16:18:17 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-20 16:33:41 -0800
commitd6ff198e7830a4a034bf00d03228ba7ee288028a (patch)
treeb9da8943d55ae3dbfd004634cb0a418c1467f6ba /src/linit.c
parentb618bfc7cf7eb5fa498a051a17832c2cda4cca9c (diff)
downloadteliva-d6ff198e7830a4a034bf00d03228ba7ee288028a.tar.gz
get rid of a distracting name
No distinction now between the C and Lua versions of the curses library.
We build them all together in one place.
Diffstat (limited to 'src/linit.c')
-rw-r--r--src/linit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linit.c b/src/linit.c
index 48eb082..6211f39 100644
--- a/src/linit.c
+++ b/src/linit.c
@@ -22,7 +22,7 @@ static const luaL_Reg lualibs[] = {
   {LUA_OSLIBNAME, luaopen_os},
   {LUA_STRLIBNAME, luaopen_string},
   {LUA_MATHLIBNAME, luaopen_math},
-  {LUA_CURSESLIBNAME, luaopen_curses_c},
+  {LUA_CURSESLIBNAME, luaopen_curses},
   {LUA_DBLIBNAME, luaopen_debug},
   {NULL, NULL}
 };