summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-16 14:08:28 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-16 14:08:28 -0300
commitc11d374c592d10b8ed649ffe501191039ee18757 (patch)
tree52a3b434d6197ae36c7f132b370c9807251effe0 /lua.h
parent13230c451ba2feaef1c92c391451ee6471b15bb7 (diff)
downloadlua-c11d374c592d10b8ed649ffe501191039ee18757.tar.gz
lua-c11d374c592d10b8ed649ffe501191039ee18757.tar.bz2
lua-c11d374c592d10b8ed649ffe501191039ee18757.zip
`panic' function configurable via API
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 73e60082..4764e1d1 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.125 2002/03/27 15:30:41 roberto Exp roberto $ 2** $Id: lua.h,v 1.126 2002/04/05 18:54:31 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: info@lua.org 5** e-mail: info@lua.org
@@ -100,6 +100,8 @@ LUA_API void lua_close (lua_State *L);
100LUA_API lua_State *lua_newthread (lua_State *L); 100LUA_API lua_State *lua_newthread (lua_State *L);
101LUA_API void lua_closethread (lua_State *L, lua_State *thread); 101LUA_API void lua_closethread (lua_State *L, lua_State *thread);
102 102
103LUA_API lua_CFunction lua_setpanicf (lua_State *L, lua_CFunction panicf);
104
103 105
104/* 106/*
105** basic stack manipulation 107** basic stack manipulation