URL in indentification

This commit is contained in:
Roberto Ierusalimschy 2001-10-11 18:40:56 -03:00
parent 15462edb0f
commit babaa96eab
1 changed files with 4 additions and 2 deletions

6
lapi.c
View File

@ -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");