This commit is contained in:
Roberto Ierusalimschy
2001-01-26 13:58:50 -02:00
parent ac390020e9
commit b82242d4c4
3 changed files with 11 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lstring.c,v 1.50 2001/01/11 18:59:20 roberto Exp roberto $
** $Id: lstring.c,v 1.51 2001/01/19 13:20:30 roberto Exp roberto $
** String table (keeps all strings handled by Lua)
** See Copyright Notice in lua.h
*/
@@ -15,8 +15,6 @@
#include "lstring.h"
#define lmod(s,size) ((int)((s) & ((size)-1)))
void luaS_init (lua_State *L) {
luaS_resize(L, &G(L)->strt, MINPOWER2);