summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c')
-rw-r--r--Build/source/texk/web2c/luatexdir/lua/liolibext.c12
-rw-r--r--Build/source/texk/web2c/luatexdir/luatex_svnversion.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/Build/source/texk/web2c/luatexdir/lua/liolibext.c b/Build/source/texk/web2c/luatexdir/lua/liolibext.c
index ce1e78f6c73..bb18531f579 100644
--- a/Build/source/texk/web2c/luatexdir/lua/liolibext.c
+++ b/Build/source/texk/web2c/luatexdir/lua/liolibext.c
@@ -579,7 +579,7 @@ static int readinteger3_s_le(lua_State *L) {
static int readinteger4(lua_State *L) {
FILE *f = tofile(L);
- int a = getc(f);
+ lua_Integer a = getc(f);
int b = getc(f);
int c = getc(f);
int d = getc(f);
@@ -596,7 +596,7 @@ static int readinteger4_le(lua_State *L) {
int d = getc(f);
int c = getc(f);
int b = getc(f);
- int a = getc(f);
+ lua_Integer a = getc(f);
if (a == EOF)
lua_pushnil(L);
else if (a >= 0x80)
@@ -613,7 +613,7 @@ static int readinteger4_s(lua_State *L) {
if (p+3 >= l) {
lua_pushnil(L);
} else {
- int a = uchar(s[p++]);
+ lua_Integer a = uchar(s[p++]);
int b = uchar(s[p++]);
int c = uchar(s[p++]);
int d = uchar(s[p]);
@@ -634,7 +634,7 @@ static int readinteger4_s_le(lua_State *L) {
int d = uchar(s[p++]);
int c = uchar(s[p++]);
int b = uchar(s[p++]);
- int a = uchar(s[p]);
+ lua_Integer a = uchar(s[p]);
if (a >= 0x80)
lua_pushinteger(L, 0x1000000 * a + 0x10000 * b + 0x100 * c + d - 0x100000000);
else
@@ -694,7 +694,7 @@ static int readintegertable(lua_State *L) {
break;
case 4:
for (i=1;i<=n;i++) {
- int a = getc(f);
+ lua_Integer a = getc(f);
int b = getc(f);
int c = getc(f);
int d = getc(f);
@@ -777,7 +777,7 @@ static int readintegertable_s(lua_State *L) {
if (p+3 >= l) {
break;
} else {
- int a = uchar(s[p++]);
+ lua_Integer a = uchar(s[p++]);
int b = uchar(s[p++]);
int c = uchar(s[p++]);
int d = uchar(s[p++]);
diff --git a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
index e0ac8a93b25..5a7f4a9bc71 100644
--- a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
+++ b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
@@ -1 +1 @@
-#define luatex_svn_revision 7413
+#define luatex_svn_revision 7415