aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-10 13:35:18 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-10 13:35:18 -0300
commitdc1e4f50734705830c3fbae3c3d643184d6614ff (patch)
tree483674352a9a429c4a87737eb21524089e938944 /lua.h
parent330e51bed3159aa83dcc9cc559c22e7d84d37604 (diff)
downloadlua-dc1e4f50734705830c3fbae3c3d643184d6614ff.tar.gz
lua-dc1e4f50734705830c3fbae3c3d643184d6614ff.tar.bz2
lua-dc1e4f50734705830c3fbae3c3d643184d6614ff.zip
missing define for `lua_dobuffer' single-state
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 3aedc504..4cf3bf6d 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.50 2000/05/08 19:37:10 roberto Exp roberto $ 2** $Id: lua.h,v 1.51 2000/05/09 14:50:16 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: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -170,6 +170,7 @@ extern lua_State *lua_state;
170#define lua_error(s) (lua_error)(lua_state, s) 170#define lua_error(s) (lua_error)(lua_state, s)
171#define lua_dofile(filename) (lua_dofile)(lua_state, filename) 171#define lua_dofile(filename) (lua_dofile)(lua_state, filename)
172#define lua_dostring(str) (lua_dostring)(lua_state, str) 172#define lua_dostring(str) (lua_dostring)(lua_state, str)
173#define lua_dobuffer(b,s,n) (lua_dobuffer)(lua_state, b,s,n)
173#define lua_callfunction(f) (lua_callfunction)(lua_state, f) 174#define lua_callfunction(f) (lua_callfunction)(lua_state, f)
174#define lua_beginblock() (lua_beginblock)(lua_state) 175#define lua_beginblock() (lua_beginblock)(lua_state)
175#define lua_endblock() (lua_endblock)(lua_state) 176#define lua_endblock() (lua_endblock)(lua_state)