From accd7bc25355be4350db6d117515c672121a67f2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Fri, 21 Nov 1997 17:00:46 -0200 Subject: small modifications (format, small optimizations, etc) --- lstring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstring.c') diff --git a/lstring.c b/lstring.c index 57a579f2..b4e435df 100644 --- a/lstring.c +++ b/lstring.c @@ -1,5 +1,5 @@ /* -** $Id: lstring.c,v 1.4 1997/11/04 15:27:53 roberto Exp roberto $ +** $Id: lstring.c,v 1.5 1997/11/19 17:29:23 roberto Exp roberto $ ** String table (keep all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -74,7 +74,7 @@ static void grow (stringtable *tb) } -static TaggedString *newone(char *buff, int tag, unsigned long h) +static TaggedString *newone (char *buff, int tag, unsigned long h) { TaggedString *ts; if (tag == LUA_T_STRING) { -- cgit v1.2.3-55-g6feb