aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-05-31 16:27:14 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-05-31 16:27:14 -0300
commit1e0aaf2156bb261787606b8cf00f812d75344ff2 (patch)
treeb9a63fff3455cc1c09f0e4d820855e47b0e8c997 /lauxlib.h
parent616438fe9ab5e3ae7d73e9ad838e9b7bdea1ea59 (diff)
downloadlua-1e0aaf2156bb261787606b8cf00f812d75344ff2.tar.gz
lua-1e0aaf2156bb261787606b8cf00f812d75344ff2.tar.bz2
lua-1e0aaf2156bb261787606b8cf00f812d75344ff2.zip
`luaL_dofile' and `luaL_dostring' are deprecated
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 6ccaf2dc..23e99496 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.63 2004/03/13 13:32:09 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.64 2004/05/03 12:28:43 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -113,17 +113,6 @@ LUALIB_API void luaL_pushresult (luaL_Buffer *B);
113/* }====================================================== */ 113/* }====================================================== */
114 114
115 115
116
117/*
118** Compatibility macros and functions
119*/
120
121LUALIB_API int lua_dofile (lua_State *L, const char *filename);
122LUALIB_API int lua_dostring (lua_State *L, const char *str);
123LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t sz,
124 const char *n);
125
126
127#endif 116#endif
128 117
129 118