commit dc1e4f50734705830c3fbae3c3d643184d6614ff
parent 330e51bed3159aa83dcc9cc559c22e7d84d37604
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 10 May 2000 13:34:56 -0300
missing define for `lua_dobuffer' single-state
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lua.h b/lua.h
@@ -1,5 +1,5 @@
/*
-** $Id: lua.h,v 1.50 2000/05/08 19:37:10 roberto Exp roberto $
+** $Id: lua.h,v 1.51 2000/05/09 14:50:16 roberto Exp roberto $
** Lua - An Extensible Extension Language
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
** e-mail: lua@tecgraf.puc-rio.br
@@ -170,6 +170,7 @@ extern lua_State *lua_state;
#define lua_error(s) (lua_error)(lua_state, s)
#define lua_dofile(filename) (lua_dofile)(lua_state, filename)
#define lua_dostring(str) (lua_dostring)(lua_state, str)
+#define lua_dobuffer(b,s,n) (lua_dobuffer)(lua_state, b,s,n)
#define lua_callfunction(f) (lua_callfunction)(lua_state, f)
#define lua_beginblock() (lua_beginblock)(lua_state)
#define lua_endblock() (lua_endblock)(lua_state)