From f379d06e24f22cb4d0afa3937c27ef35b73b00a6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 30 Oct 2000 10:38:50 -0200 Subject: all API functions are declared in a single line (to facilitate pre-processing). --- ldo.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ldo.c') diff --git a/ldo.c b/ldo.c index 8b5b1d63..0aedd8fb 100644 --- a/ldo.c +++ b/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 1.107 2000/10/10 19:51:39 roberto Exp roberto $ +** $Id: ldo.c,v 1.108 2000/10/20 16:39:03 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -301,8 +301,7 @@ static int parse_buffer (lua_State *L, const char *buff, size_t size, } -LUA_API int lua_dobuffer (lua_State *L, const char *buff, size_t size, - const char *name) { +LUA_API int lua_dobuffer (lua_State *L, const char *buff, size_t size, const char *name) { int status = parse_buffer(L, buff, size, name); if (status == 0) /* parse OK? */ status = lua_call(L, 0, LUA_MULTRET); /* call main */ -- cgit v1.2.3-55-g6feb