summaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstate.c b/lstate.c
index 99b4bf75..45f534ca 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 1.94 2002/05/08 17:34:23 roberto Exp roberto $ 2** $Id: lstate.c,v 1.95 2002/06/03 14:09:57 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -28,6 +28,7 @@ static void close_state (lua_State *L);
28** call `lua_setpanicf' 28** call `lua_setpanicf'
29*/ 29*/
30static int default_panic (lua_State *L) { 30static int default_panic (lua_State *L) {
31 UNUSED(L);
31 return 0; 32 return 0;
32} 33}
33 34