summaryrefslogtreecommitdiff
path: root/DIFFS
diff options
context:
space:
mode:
Diffstat (limited to 'DIFFS')
-rw-r--r--DIFFS97
1 files changed, 0 insertions, 97 deletions
diff --git a/DIFFS b/DIFFS
deleted file mode 100644
index b7c86388..00000000
--- a/DIFFS
+++ /dev/null
@@ -1,97 +0,0 @@
-diff -r lua-4.0/include/lua.h lua/include/lua.h
-2c2
-< ** $Id: lua.h,v 1.79 2000/10/31 12:44:07 roberto Exp $
----
-> ** $Id: lua.h,v 1.79a 2000/10/31 12:44:07 roberto Exp $
-25c25
-< #define LUA_VERSION "Lua 4.0"
----
-> #define LUA_VERSION "Lua 4.0.1"
-diff -r lua-4.0/src/lapi.c lua/src/lapi.c
-2c2
-< ** $Id: lapi.c,v 1.110 2000/10/30 12:50:09 roberto Exp $
----
-> ** $Id: lapi.c,v 1.110a 2000/10/30 12:50:09 roberto Exp $
-488c488
-< TString *ts = luaS_newudata(L, size, NULL);
----
-> TString *ts = luaS_newudata(L, (size==0) ? 1 : size, NULL);
-diff -r lua-4.0/src/ldo.c lua/src/ldo.c
-2c2
-< ** $Id: ldo.c,v 1.109 2000/10/30 12:38:50 roberto Exp $
----
-> ** $Id: ldo.c,v 1.109a 2000/10/30 12:38:50 roberto Exp $
-247c247,249
-< luaC_checkGC(L);
----
-> /* before parsing, give a (good) chance to GC */
-> if (L->nblocks/8 >= L->GCthreshold/10)
-> luaC_collectgarbage(L);
-277,278c279,280
-< filename = lua_tostring(L, -1); /* filename = '@'..filename */
-< lua_pop(L, 1); /* OK: there is no GC during parser */
----
-> c = lua_gettop(L);
-> filename = lua_tostring(L, c); /* filename = '@'..filename */
-280a283
-> lua_remove(L, c); /* remove `filename' from the stack */
-diff -r lua-4.0/src/lgc.c lua/src/lgc.c
-2c2
-< ** $Id: lgc.c,v 1.72 2000/10/26 12:47:05 roberto Exp $
----
-> ** $Id: lgc.c,v 1.72+ 2000/10/26 12:47:05 roberto Exp $
-339c339
-< static void luaC_collectgarbage (lua_State *L) {
----
-> void luaC_collectgarbage (lua_State *L) {
-diff -r lua-4.0/src/lgc.h lua/src/lgc.h
-2c2
-< ** $Id: lgc.h,v 1.8 2000/10/02 14:47:43 roberto Exp $
----
-> ** $Id: lgc.h,v 1.9 2001/02/02 16:23:20 roberto Exp $
-14a15
-> void luaC_collectgarbage (lua_State *L);
-diff -r lua-4.0/src/lib/lbaselib.c lua/src/lib/lbaselib.c
-2c2
-< ** $Id: lbaselib.c,v 1.17 2000/11/06 13:45:18 roberto Exp $
----
-> ** $Id: lbaselib.c,v 1.17a 2000/11/06 13:45:18 roberto Exp $
-168c168
-< lua_rawget(L, -2);
----
-> lua_rawget(L, 1);
-176c176
-< lua_rawset(L, -3);
----
-> lua_rawset(L, 1);
-260c260
-< if (*s == '\27') /* binary files start with ESC... */
----
-> if (*s == '\33') /* binary files start with ESC... */
-diff -r lua-4.0/src/lparser.c lua/src/lparser.c
-2c2
-< ** $Id: lparser.c,v 1.116 2000/10/27 11:39:52 roberto Exp $
----
-> ** $Id: lparser.c,v 1.117 2000/11/29 11:57:42 roberto Exp $
-1000c1000
-< if (!block_follow(ls->t.token))
----
-> if (!block_follow(ls->t.token) && ls->t.token != ';')
-diff -r lua-4.0/src/lstring.c lua/src/lstring.c
-2c2
-< ** $Id: lstring.c,v 1.45 2000/10/30 17:49:19 roberto Exp $
----
-> ** $Id: lstring.c,v 1.45a 2000/10/30 17:49:19 roberto Exp $
-122c122
-< ts->u.d.value = (udata == NULL) ? uts+1 : udata;
----
-> ts->u.d.value = (s > 0) ? uts+1 : udata;
-diff -r lua-4.0/src/lvm.c lua/src/lvm.c
-2c2
-< ** $Id: lvm.c,v 1.146 2000/10/26 12:47:05 roberto Exp $
----
-> ** $Id: lvm.c,v 1.146a 2000/10/26 12:47:05 roberto Exp $
-82c82
-< luaD_lineHook(L, base-2, newline, linehook);
----
-> luaD_lineHook(L, base-1, newline, linehook);