about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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 */