diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2009-04-16 07:56:44 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2009-04-16 07:56:44 +0000 |
commit | 40c2ba944e1cee0677734608263cbc7ba3a729bf (patch) | |
tree | 6da3acbd4e74eb5854f90416313fb56a4eb29824 /Build/source/texk/web2c/luatexdir/textcodes.c | |
parent | 79e9c535970a1887e1b6b2196cd90775955ea486 (diff) |
Import luatex 0.39.0
git-svn-id: svn://tug.org/texlive/trunk@12733 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/textcodes.c')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/textcodes.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/luatexdir/textcodes.c b/Build/source/texk/web2c/luatexdir/textcodes.c index 2257f360446..fc637887e22 100644 --- a/Build/source/texk/web2c/luatexdir/textcodes.c +++ b/Build/source/texk/web2c/luatexdir/textcodes.c @@ -25,7 +25,7 @@ #include "commands.h" static const char __svn_version[] = - "$Id$ $URL: http://scm.foundry.supelec.fr/svn/luatex/trunk/src/texk/web2c/luatexdir/textcodes.c $"; + "$Id$ $URL: http://scm.foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/textcodes.c $"; #define LCCODESTACK 8 #define LCCODEDEFAULT 0 @@ -138,7 +138,7 @@ static void undumpsfcodes(void) static sa_tree *catcode_heads = NULL; -static int catcode_max = 0; +static integer catcode_max = 0; static unsigned char *catcode_valid = NULL; #define CATCODE_MAX 65535 @@ -216,7 +216,7 @@ static void dumpcatcodes(void) static void undumpcatcodes(void) { - int total, h, k; + integer total, k, x; xfree(catcode_heads); xfree(catcode_valid); catcode_heads = Mxmalloc_array(sa_tree, (CATCODE_MAX + 1)); @@ -226,9 +226,9 @@ static void undumpcatcodes(void) undump_int(catcode_max); undump_int(total); for (k = 0; k < total; k++) { - undump_int(h); - catcode_heads[h] = undump_sa_tree(); - catcode_valid[h] = 1; + undump_int(x); + catcode_heads[x] = undump_sa_tree(); + catcode_valid[x] = 1; } } |