texlive[46380] Build/source/libs/lua53/TLpatches: removed useless
commits+lscarso at tug.org
commits+lscarso at tug.org
Fri Jan 19 01:33:11 CET 2018
Revision: 46380
http://tug.org/svn/texlive?view=revision&revision=46380
Author: lscarso
Date: 2018-01-19 01:33:11 +0100 (Fri, 19 Jan 2018)
Log Message:
-----------
removed useless files
Removed Paths:
-------------
trunk/Build/source/libs/lua53/TLpatches/_patch-01-utf-8
trunk/Build/source/libs/lua53/TLpatches/_patch-02-FreeBSD
trunk/Build/source/libs/lua53/TLpatches/_patch-03-export
Deleted: trunk/Build/source/libs/lua53/TLpatches/_patch-01-utf-8
===================================================================
--- trunk/Build/source/libs/lua53/TLpatches/_patch-01-utf-8 2018-01-18 23:29:37 UTC (rev 46379)
+++ trunk/Build/source/libs/lua53/TLpatches/_patch-01-utf-8 2018-01-19 00:33:11 UTC (rev 46380)
@@ -1,26 +0,0 @@
-diff -ur lua-5.2.4.orig/src/lctype.h lua-5.2.4/src/lctype.h
---- lua-5.2.4.orig/src/lctype.h 2013-04-12 20:48:47.000000000 +0200
-+++ lua-5.2.4/src/lctype.h 2014-02-13 13:17:33.000000000 +0100
-@@ -7,6 +7,8 @@
- #ifndef lctype_h
- #define lctype_h
-
-+#include <ctype.h>
-+
- #include "lua.h"
-
-
-@@ -53,9 +55,11 @@
-
- /*
- ** 'lalpha' (Lua alphabetic) and 'lalnum' (Lua alphanumeric) both include '_'
-+**
-+** all utf-8 chars (greater than 0x7f) are always alphabetic
- */
--#define lislalpha(c) testprop(c, MASK(ALPHABIT))
--#define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT)))
-+#define lislalpha(c) (isalpha(c) || (c) == '_' || (c) > 0x7f)
-+#define lislalnum(c) (isalnum(c) || (c) == '_' || (c) > 0x7f)
- #define lisdigit(c) testprop(c, MASK(DIGITBIT))
- #define lisspace(c) testprop(c, MASK(SPACEBIT))
- #define lisprint(c) testprop(c, MASK(PRINTBIT))
Deleted: trunk/Build/source/libs/lua53/TLpatches/_patch-02-FreeBSD
===================================================================
--- trunk/Build/source/libs/lua53/TLpatches/_patch-02-FreeBSD 2018-01-18 23:29:37 UTC (rev 46379)
+++ trunk/Build/source/libs/lua53/TLpatches/_patch-02-FreeBSD 2018-01-19 00:33:11 UTC (rev 46380)
@@ -1,13 +0,0 @@
-diff -ur lua-5.2.4.orig/src/liolib.c lua-5.2.4/src/liolib.c
---- lua-5.2.4.orig/src/liolib.c 2013-04-12 20:48:47.000000000 +0200
-+++ lua-5.2.4/src/liolib.c 2014-03-19 15:03:49.727286832 +0100
-@@ -19,6 +19,9 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-+#if defined(HAVE_UNISTD_H)
-+#include <unistd.h>
-+#endif
-
- #define liolib_c
- #define LUA_LIB
Deleted: trunk/Build/source/libs/lua53/TLpatches/_patch-03-export
===================================================================
--- trunk/Build/source/libs/lua53/TLpatches/_patch-03-export 2018-01-18 23:29:37 UTC (rev 46379)
+++ trunk/Build/source/libs/lua53/TLpatches/_patch-03-export 2018-01-19 00:33:11 UTC (rev 46380)
@@ -1,33 +0,0 @@
-diff -ur lua-5.2.4.orig/src/lopcodes.h lua-5.2.4/src/lopcodes.h
---- lua-5.2.4.orig/src/lopcodes.h 2014-10-20 20:32:09.000000000 +0200
-+++ lua-5.2.4/src/lopcodes.h 2015-03-11 08:31:42.000000000 +0100
-@@ -269,7 +269,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))
-@@ -278,7 +278,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 lua-5.2.4.orig/src/lundump.h lua-5.2.4/src/lundump.h
---- lua-5.2.4.orig/src/lundump.h 2013-04-12 20:48:47.000000000 +0200
-+++ lua-5.2.4/src/lundump.h 2014-10-22 11:14:59.000000000 +0200
-@@ -17,7 +17,7 @@
- LUAI_FUNC void luaU_header (lu_byte* h);
-
- /* dump one chunk; from ldump.c */
--LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
-+LUA_API int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
-
- /* data to catch conversion errors */
- #define LUAC_TAIL "\x19\x93\r\n\x1a\n"
More information about the tex-live-commits
mailing list