mirror of
https://github.com/lua/lua.git
synced 2025-01-28 06:03:00 +08:00
"AUTHORS" separated from COPYRIGHT.
This commit is contained in:
parent
9d9f9c48ff
commit
024f2374ab
5
lua.c
5
lua.c
@ -3,7 +3,7 @@
|
|||||||
** Linguagem para Usuarios de Aplicacao
|
** Linguagem para Usuarios de Aplicacao
|
||||||
*/
|
*/
|
||||||
|
|
||||||
char *rcs_lua="$Id: lua.c,v 1.5 1995/10/06 14:11:40 roberto Exp roberto $";
|
char *rcs_lua="$Id: lua.c,v 1.6 1995/10/23 13:54:11 roberto Exp roberto $";
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -80,7 +80,8 @@ int main (int argc, char *argv[])
|
|||||||
else if (strcmp(argv[i], "-") == 0)
|
else if (strcmp(argv[i], "-") == 0)
|
||||||
manual_input();
|
manual_input();
|
||||||
else if (strcmp(argv[i], "-v") == 0)
|
else if (strcmp(argv[i], "-v") == 0)
|
||||||
printf("%s %s\n\n", LUA_VERSION, LUA_COPYRIGHT);
|
printf("%s %s\n(written by %s)\n\n",
|
||||||
|
LUA_VERSION, LUA_COPYRIGHT, LUA_AUTHORS);
|
||||||
else
|
else
|
||||||
result = lua_dofile (argv[i]);
|
result = lua_dofile (argv[i]);
|
||||||
}
|
}
|
||||||
|
6
lua.h
6
lua.h
@ -2,7 +2,7 @@
|
|||||||
** LUA - Linguagem para Usuarios de Aplicacao
|
** LUA - Linguagem para Usuarios de Aplicacao
|
||||||
** Grupo de Tecnologia em Computacao Grafica
|
** Grupo de Tecnologia em Computacao Grafica
|
||||||
** TeCGraf - PUC-Rio
|
** TeCGraf - PUC-Rio
|
||||||
** $Id: lua.h,v 3.18 1995/10/17 14:12:45 roberto Exp roberto $
|
** $Id: lua.h,v 3.19 1995/10/25 13:05:51 roberto Exp roberto $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@ -10,8 +10,8 @@
|
|||||||
#define lua_h
|
#define lua_h
|
||||||
|
|
||||||
#define LUA_VERSION "Lua 2.1"
|
#define LUA_VERSION "Lua 2.1"
|
||||||
#define LUA_COPYRIGHT "Copyright (C) 1994, 1995 TeCGraf \n\
|
#define LUA_COPYRIGHT "Copyright (C) 1994, 1995 TeCGraf"
|
||||||
(written by W. Celes, R. Ierusalimschy & L. H. de Figueiredo)"
|
#define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo"
|
||||||
|
|
||||||
|
|
||||||
/* Private Part */
|
/* Private Part */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user