zio does not keep "source" name (nobody uses it)

This commit is contained in:
Roberto Ierusalimschy
2003-08-25 16:51:54 -03:00
parent 64066359dd
commit 9fcc485176
9 changed files with 24 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lparser.h,v 1.48 2003/07/09 15:36:38 roberto Exp roberto $
** $Id: lparser.h,v 1.49 2003/07/09 20:11:30 roberto Exp roberto $
** Lua Parser
** See Copyright Notice in lua.h
*/
@@ -71,7 +71,7 @@ typedef struct FuncState {
} FuncState;
Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff);
Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *name);
#endif