about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/lua.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lua.c b/src/lua.c
index 500f64d..337341d 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -290,21 +290,15 @@ static int handle_image (lua_State *L, char **argv, int n) {
   status = docall(L, narg, 0);
   lua_getglobal(L, "teliva_program");
   int table = lua_gettop(L);
-//?   endwin();
   /* parse and load each binding in teliva_program */
   for (lua_pushnil(L); lua_next(L, table) != 0; lua_pop(L, 1)) {
     const char* key = lua_tostring(L, -2);
     const char* value = lua_tostring(L, -1);
-//?     printf("===\nkey: %s\n", key);
-//?     printf("value: %s\n", value);
     dostring(L, value, key);
-//?     stackDump(L);
   }
   /* call main() */
   lua_getglobal(L, "main");
   docall(L, 0, 1);
-//?   stackDump(L);
-//?   exit(1);
   return 0;
 }
 
vious revision' href='/akkartik/mu/blame/translate_subx?h=hlt&id=c6b928be29ac8cdb4e4d6e1eaa20420ff03e5a4c'>^
d9d9ab81 ^
71e4f381 ^
099f0d5d ^
71e4f381 ^
418ea7d3 ^
71e4f381 ^
90538f23 ^
71e4f381 ^
90538f23 ^
71e4f381 ^
90538f23 ^
71e4f381 ^
6488bfcf ^
71e4f381 ^
90538f23 ^
71e4f381 ^
90538f23 ^
da438fa9 ^
71e4f381 ^
da438fa9 ^
531f14c9 ^
98feca92 ^
71e4f381 ^
da438fa9 ^
71e4f381 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41