lua

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

commit babaa96eab3a5419889b393424db14377f581a69
parent 15462edb0ff86bf1904011b29635420451cab2c5
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 11 Oct 2001 18:40:34 -0300

URL in indentification

Diffstat:
Mlapi.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lapi.c b/lapi.c @@ -23,8 +23,10 @@ #include "lvm.h" -const l_char lua_ident[] = l_s("$Lua: ") l_s(LUA_VERSION) l_s(" ") - l_s(LUA_COPYRIGHT) l_s(" $\n") l_s("$Authors: ") l_s(LUA_AUTHORS) l_s(" $"); +const l_char lua_ident[] = + l_s("$Lua: ") l_s(LUA_VERSION) l_s(" ") l_s(LUA_COPYRIGHT) l_s(" $\n") + l_s("$Authors: ") l_s(LUA_AUTHORS) l_s(" $\n") + l_s("$URL: www.lua.org $\n");