1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00

'dobuffer' addpoted.

This commit is contained in:
Roberto Ierusalimschy 1998-05-31 19:22:00 -03:00
parent 6152973f9c
commit 741c6f5006

8
ldo.c
View File

@ -1,5 +1,5 @@
/* /*
** $Id: ldo.c,v 1.23 1998/01/28 17:47:05 roberto Exp roberto $ ** $Id: ldo.c,v 1.24 1998/01/29 15:59:35 roberto Exp roberto $
** Stack and Call structure of Lua ** Stack and Call structure of Lua
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -411,13 +411,11 @@ int lua_dostring (char *str)
} }
#if 0 int lua_dobuffer (char *buff, int size) {
int lua_dobuffer (char *buff, int size)
{
int status; int status;
ZIO z; ZIO z;
luaZ_mopen(&z, buff, size, "(buffer)"); luaZ_mopen(&z, buff, size, "(buffer)");
status = do_main(&z, 1); status = do_main(&z, 1);
return status; return status;
} }
#endif