about summary refs log tree commit diff stats
path: root/src/lua.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-13 21:25:52 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-13 21:25:52 -0800
commitda76ec44f1211ad49ab0700bda647bfe523d5093 (patch)
tree3a4138231955bb13b6fcdc3cb366e3ef3ad62eb2 /src/lua.c
parent88f4b1bb2bdafe1994f9f025cadb422e8c1e78f3 (diff)
downloadteliva-da76ec44f1211ad49ab0700bda647bfe523d5093.tar.gz
.
Diffstat (limited to 'src/lua.c')
-rw-r--r--src/lua.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lua.c b/src/lua.c
index 9690184..d7939bf 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -566,6 +566,7 @@ static int pmain (lua_State *L) {
 
 
 extern void draw_menu (lua_State *);
+extern void cleanup_curses (void);
 
 
 int main (int argc, char **argv) {
@@ -589,7 +590,7 @@ int main (int argc, char **argv) {
   status = lua_cpcall(L, &pmain, &s);
   report(L, status);
   lua_close(L);
-  endwin();
+  cleanup_curses();
   return (status || s.status) ? EXIT_FAILURE : EXIT_SUCCESS;
 }