From dc1e4f50734705830c3fbae3c3d643184d6614ff Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 10 May 2000 13:35:18 -0300 Subject: missing define for `lua_dobuffer' single-state --- lua.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 3aedc504..4cf3bf6d 100644 --- 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) -- cgit v1.2.3-55-g6feb