From 1e0aaf2156bb261787606b8cf00f812d75344ff2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 31 May 2004 16:27:14 -0300 Subject: `luaL_dofile' and `luaL_dostring' are deprecated --- lauxlib.h | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'lauxlib.h') diff --git a/lauxlib.h b/lauxlib.h index 6ccaf2dc..23e99496 100644 --- a/lauxlib.h +++ b/lauxlib.h @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.h,v 1.63 2004/03/13 13:32:09 roberto Exp roberto $ +** $Id: lauxlib.h,v 1.64 2004/05/03 12:28:43 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -113,17 +113,6 @@ LUALIB_API void luaL_pushresult (luaL_Buffer *B); /* }====================================================== */ - -/* -** Compatibility macros and functions -*/ - -LUALIB_API int lua_dofile (lua_State *L, const char *filename); -LUALIB_API int lua_dostring (lua_State *L, const char *str); -LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t sz, - const char *n); - - #endif -- cgit v1.2.3-55-g6feb