From f8e354e2404cbd0a91b4299598d4de9757e73fd7 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 23 Sep 2009 17:14:00 -0300 Subject: [PATCH] detail (space between function name and its parameter list) --- lparser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lparser.c b/lparser.c index a22bc32a..29fd747c 100644 --- a/lparser.c +++ b/lparser.c @@ -1,5 +1,5 @@ /* -** $Id: lparser.c,v 2.64 2009/06/18 16:35:05 roberto Exp roberto $ +** $Id: lparser.c,v 2.65 2009/08/10 20:41:04 roberto Exp roberto $ ** Lua Parser ** See Copyright Notice in lua.h */ @@ -139,7 +139,7 @@ static void codestring (LexState *ls, expdesc *e, TString *s) { } -static void checkname(LexState *ls, expdesc *e) { +static void checkname (LexState *ls, expdesc *e) { codestring(ls, e, str_checkname(ls)); }