small modifications (format, small optimizations, etc)

This commit is contained in:
Roberto Ierusalimschy
1997-11-21 17:00:46 -02:00
parent 6153200bc2
commit accd7bc253
13 changed files with 301 additions and 295 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: ltable.c,v 1.5 1997/10/24 17:17:24 roberto Exp roberto $
** $Id: ltable.c,v 1.6 1997/11/19 17:29:23 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -84,7 +84,7 @@ static Node *hashnodecreate (int nhash)
*/
static void hashdelete (Hash *t)
{
luaM_free (nodevector(t));
luaM_free(nodevector(t));
luaM_free(t);
}