commit 024f2374abf963a9cf130286fd406fc03323558b
parent 9d9f9c48ffea08f90768a24ceb38e551d48e17e2
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Tue, 31 Oct 1995 15:05:16 -0200
"AUTHORS" separated from COPYRIGHT.
Diffstat:
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/lua.c b/lua.c
@@ -3,7 +3,7 @@
** 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 <string.h>
@@ -80,7 +80,8 @@ int main (int argc, char *argv[])
else if (strcmp(argv[i], "-") == 0)
manual_input();
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
result = lua_dofile (argv[i]);
}
diff --git a/lua.h b/lua.h
@@ -2,7 +2,7 @@
** LUA - Linguagem para Usuarios de Aplicacao
** Grupo de Tecnologia em Computacao Grafica
** 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_VERSION "Lua 2.1"
-#define LUA_COPYRIGHT "Copyright (C) 1994, 1995 TeCGraf \n\
-(written by W. Celes, R. Ierusalimschy & L. H. de Figueiredo)"
+#define LUA_COPYRIGHT "Copyright (C) 1994, 1995 TeCGraf"
+#define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo"
/* Private Part */