lua

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

commit 80a267b1307107745f166c4043d8ea28c881d2f3
parent 3182ac69a7a77232120b8a3c51e1b993e5f9d329
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 17 Oct 2006 16:59:44 -0300

avoid $URL for ident; it is reserved in subversion

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

diff --git a/lapi.c b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 2.56 2006/07/11 15:53:29 roberto Exp roberto $ +** $Id: lapi.c,v 2.57 2006/09/11 14:07:24 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -32,9 +32,8 @@ const char lua_ident[] = - "$Lua: " LUA_RELEASE " " LUA_COPYRIGHT " $\n" - "$Authors: " LUA_AUTHORS " $\n" - "$URL: www.lua.org $\n"; + "$Lua: " LUA_RELEASE " " LUA_COPYRIGHT " $" + "$Authors: " LUA_AUTHORS " $";