Revision: 1188
http://www.exim.org/viewvc/pcre2?view=rev&revision=1188
Author: ph10
Date: 2019-11-21 16:31:08 +0000 (Thu, 21 Nov 2019)
Log Message:
-----------
Final file tidies for 10.34
Modified Paths:
--------------
code/trunk/ChangeLog
code/trunk/NEWS
code/trunk/configure.ac
code/trunk/src/config.h.generic
code/trunk/src/pcre2.h.generic
code/trunk/src/pcre2_compile.c
code/trunk/src/pcre2test.c
Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog 2019-11-19 12:25:32 UTC (rev 1187)
+++ code/trunk/ChangeLog 2019-11-21 16:31:08 UTC (rev 1188)
@@ -2,8 +2,8 @@
--------------------
-Version 10.34-RC1 06-November-2019
-----------------------------------
+Version 10.34 21-November-2019
+------------------------------
1. The maximum number of capturing subpatterns is 65535 (documented), but no
check on this was ever implemented. This omission has been rectified; it fixes
Modified: code/trunk/NEWS
===================================================================
--- code/trunk/NEWS 2019-11-19 12:25:32 UTC (rev 1187)
+++ code/trunk/NEWS 2019-11-21 16:31:08 UTC (rev 1188)
@@ -2,7 +2,7 @@
-------------------------
-Version 10.34 06-November-2019
+Version 10.34 21-November-2019
------------------------------
Another release with a few enhancements as well as bugfixes and tidies. The
Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac 2019-11-19 12:25:32 UTC (rev 1187)
+++ code/trunk/configure.ac 2019-11-21 16:31:08 UTC (rev 1188)
@@ -10,8 +10,8 @@
m4_define(pcre2_major, [10])
m4_define(pcre2_minor, [34])
-m4_define(pcre2_prerelease, [-RC2])
-m4_define(pcre2_date, [2019-11-06])
+m4_define(pcre2_prerelease, [])
+m4_define(pcre2_date, [2019-11-21])
# NOTE: The CMakeLists.txt file searches for the above variables in the first
# 50 lines of this file. Please update that if the variables above are moved.
Modified: code/trunk/src/config.h.generic
===================================================================
--- code/trunk/src/config.h.generic 2019-11-19 12:25:32 UTC (rev 1187)
+++ code/trunk/src/config.h.generic 2019-11-21 16:31:08 UTC (rev 1188)
@@ -218,7 +218,7 @@
#define PACKAGE_NAME "PCRE2"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "PCRE2 10.34-RC2"
+#define PACKAGE_STRING "PCRE2 10.34"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pcre2"
@@ -227,7 +227,7 @@
#define PACKAGE_URL ""
/* Define to the version of this package. */
-#define PACKAGE_VERSION "10.34-RC2"
+#define PACKAGE_VERSION "10.34"
/* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
parentheses (of any kind) in a pattern. This limits the amount of system
@@ -352,7 +352,7 @@
#endif
/* Version number of package */
-#define VERSION "10.34-RC2"
+#define VERSION "10.34"
/* Define to 1 if on MINIX. */
/* #undef _MINIX */
Modified: code/trunk/src/pcre2.h.generic
===================================================================
--- code/trunk/src/pcre2.h.generic 2019-11-19 12:25:32 UTC (rev 1187)
+++ code/trunk/src/pcre2.h.generic 2019-11-21 16:31:08 UTC (rev 1188)
@@ -43,8 +43,8 @@
#define PCRE2_MAJOR 10
#define PCRE2_MINOR 34
-#define PCRE2_PRERELEASE -RC2
-#define PCRE2_DATE 2019-11-06
+#define PCRE2_PRERELEASE
+#define PCRE2_DATE 2019-11-21
/* When an application links to a PCRE DLL in Windows, the symbols that are
imported have to be identified as such. When building PCRE2, the appropriate
Modified: code/trunk/src/pcre2_compile.c
===================================================================
--- code/trunk/src/pcre2_compile.c 2019-11-19 12:25:32 UTC (rev 1187)
+++ code/trunk/src/pcre2_compile.c 2019-11-21 16:31:08 UTC (rev 1188)
@@ -8743,9 +8743,9 @@
if (inassert == 0) return 0;
/* If the character is more than one code unit long, we cannot set its
- first code unit when matching caselessly. Later scanning may pick up
+ first code unit when matching caselessly. Later scanning may pick up
multiple code units. */
-
+
#ifdef SUPPORT_UNICODE
#if PCRE2_CODE_UNIT_WIDTH == 8
if (scode[1] >= 0x80) return 0;
Modified: code/trunk/src/pcre2test.c
===================================================================
--- code/trunk/src/pcre2test.c 2019-11-19 12:25:32 UTC (rev 1187)
+++ code/trunk/src/pcre2test.c 2019-11-21 16:31:08 UTC (rev 1188)
@@ -170,8 +170,8 @@
#endif
/* VC and older compilers don't support %td or %zu, and even some that claim to
-be C99 don't support it (hence DISABLE_PERCENT_ZT). There are some non-C99
-environments where %lu gives a warning with 32-bit pointers. As there doesn't
+be C99 don't support it (hence DISABLE_PERCENT_ZT). There are some non-C99
+environments where %lu gives a warning with 32-bit pointers. As there doesn't
seem to be an easy way round this, just live with it (the cases are rare). */
#if defined(_MSC_VER) || !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L || defined(DISABLE_PERCENT_ZT)