about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-05 22:07:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-11-05 22:07:46 -0700
commit4ad3390ce39ed7525a073990c1655e7b1e14ce6b (patch)
treed0d6954ba12db5dde34bb0e8f53a34b473cdac57 /src
parent95841b8a43676409f1f8319ecebd8e1eebf6d524 (diff)
downloadteliva-4ad3390ce39ed7525a073990c1655e7b1e14ce6b.tar.gz
.
Diffstat (limited to 'src')
-rw-r--r--src/lua.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lua.c b/src/lua.c
index f773607..0bbcd47 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -368,14 +368,6 @@ static int pmain (lua_State *L) {
 }
 
 
-//? static const char *WINDOWMETA = "curses:window";  // metatable for all ncurses WINDOW objects
-//? // prototype for all ncurses WINDOW metatables
-//? static const luaL_Reg curses_window_fns[] = {
-//?   {"addstr", Waddstr},
-//?   {NULL, NULL}
-//? };
-
-
 typedef struct NumArray {
   int size;
   double values[0];  /* variable part */