summaryrefslogtreecommitdiff
path: root/Build/source/libs/lua53/TLpatches/patch-03-export
diff options
context:
space:
mode:
authorLuigi Scarso <luigi.scarso@gmail.com>2018-01-17 18:00:12 +0000
committerLuigi Scarso <luigi.scarso@gmail.com>2018-01-17 18:00:12 +0000
commitf100e939b3262ac391fe767d591d1a316ab59f3a (patch)
tree53787d7aa79da3a8b10df0049cfe623cf0f2bd89 /Build/source/libs/lua53/TLpatches/patch-03-export
parent345e6b3ddab394ae88cd0d916992bc2bc0f8695d (diff)
Luatex 1.07 --- luatex and luatex53
git-svn-id: svn://tug.org/texlive/trunk@46348 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/lua53/TLpatches/patch-03-export')
-rw-r--r--Build/source/libs/lua53/TLpatches/patch-03-export35
1 files changed, 35 insertions, 0 deletions
diff --git a/Build/source/libs/lua53/TLpatches/patch-03-export b/Build/source/libs/lua53/TLpatches/patch-03-export
new file mode 100644
index 00000000000..dda2b87b24c
--- /dev/null
+++ b/Build/source/libs/lua53/TLpatches/patch-03-export
@@ -0,0 +1,35 @@
+diff -ur lopcodes.h.orig lopcodes.h
+--- lopcodes.h.orig 2017-10-24 15:22:51.012119943 +0200
++++ lopcodes.h 2017-10-24 15:18:37.924130321 +0200
+@@ -278,7 +278,7 @@
+ OpArgK /* argument is a constant or register/constant */
+ };
+
+-LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
++LUA_API const lu_byte luaP_opmodes[NUM_OPCODES];
+
+ #define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 3))
+ #define getBMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 4) & 3))
+@@ -287,7 +287,7 @@
+ #define testTMode(m) (luaP_opmodes[m] & (1 << 7))
+
+
+-LUAI_DDEC const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
++LUA_API const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
+
+
+ /* number of list items to accumulate before a SETLIST instruction */
+
+diff -ur lundump.h.orig lundump.h
+--- lundump.h.orig 2017-10-24 15:19:03.860129258 +0200
++++ lundump.h 2017-10-24 15:19:47.088127485 +0200
+@@ -26,7 +26,7 @@
+ LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
+
+ /* dump one chunk; from ldump.c */
+-LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
++LUA_API int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
+ void* data, int strip);
+
+ #endif
+