summaryrefslogtreecommitdiffstats
path: root/src/lua.c
diff options
context:
space:
mode:
authorroman65536 <roman65536@yahoo.com>2017-03-16 10:29:25 +0100
committerroman65536 <roman65536@yahoo.com>2017-03-16 10:29:25 +0100
commitae4f2b0167b309ea3d24b9bbc55443b78c5a1a8d (patch)
tree26669103ff1552d18f0ea6d85dd25d77af147a10 /src/lua.c
parent75ab57d1fe52c56ab7df8ada9393a9dcc3f975c2 (diff)
parent7e0389b638a924620912626788e12ad70768931f (diff)
Merge branch 'freeze' of https://github.com/andmarti1424/sc-im into freeze
Diffstat (limited to 'src/lua.c')
-rw-r--r--src/lua.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lua.c b/src/lua.c
index 507928e..56d78f1 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -42,9 +42,8 @@ extern WINDOW * input_win;
lua_State *L;
void bail(lua_State *L, char *msg){
- sc_debug("FATAL ERROR: %s: %s",
- msg, lua_tostring(L, -1));
- exit_app(1);
+ sc_debug("FATAL ERROR: %s: %s", msg, lua_tostring(L, -1));
+ //exit(1); shall exit here?
}
static int l_getnum (lua_State *L) {