lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 342a9365996d5f2018602e7650262adaf72bcb52
parent 901da539e51e252bdd6dcfb428b8b473db5e7abc
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon, 10 Mar 2014 16:52:22 -0300

detail (breaking too long lines)

Diffstat:
Mlundump.h | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/lundump.h b/lundump.h @@ -1,5 +1,5 @@ /* -** $Id: lundump.h,v 1.39 2012/05/08 13:53:33 roberto Exp roberto $ +** $Id: lundump.h,v 1.40 2014/02/27 16:56:20 roberto Exp roberto $ ** load precompiled Lua chunks ** See Copyright Notice in lua.h */ @@ -22,9 +22,11 @@ #define LUAC_FORMAT 0 /* this is the official format */ /* load one chunk; from lundump.c */ -LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name); +LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, + const char* name); /* dump one chunk; from ldump.c */ -LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip); +LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, + void* data, int strip); #endif