summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--charclass_invlists.h12
-rw-r--r--locale.c2
-rw-r--r--regen/mk_invlists.pl2
-rw-r--r--uni_keywords.h2
4 files changed, 8 insertions, 10 deletions
diff --git a/charclass_invlists.h b/charclass_invlists.h
index e0fc111a90..00a3407c1a 100644
--- a/charclass_invlists.h
+++ b/charclass_invlists.h
@@ -182193,7 +182193,7 @@ static const UV UNI__PERL_PROBLEMATIC_LOCALE_FOLDEDS_START_invlist[] = { /* for
0x0,
0x100,
0x130,
- 0x132,
+ 0x131,
0x149,
0x14A,
0x178,
@@ -182219,14 +182219,14 @@ static const UV UNI__PERL_PROBLEMATIC_LOCALE_FOLDEDS_START_invlist[] = { /* for
};
static const UV UNI__PERL_PROBLEMATIC_LOCALE_FOLDS_invlist[] = { /* for all charsets */
- 26, /* Number of elements */
+ 24, /* Number of elements */
148565664, /* Version and data structure type */
0, /* 0 if the list starts at 0;
1 if it starts at the element beyond 0 */
0x0,
0x100,
0x130,
- 0x132,
+ 0x131,
0x149,
0x14A,
0x178,
@@ -182235,8 +182235,6 @@ static const UV UNI__PERL_PROBLEMATIC_LOCALE_FOLDS_invlist[] = { /* for all cha
0x180,
0x1F0,
0x1F1,
- 0x307,
- 0x308,
0x39C,
0x39D,
0x3BC,
@@ -381512,7 +381510,7 @@ static const UV UNI__PERL_SURROGATE_invlist[] = { /* for all charsets */
0xE000
};
-const char * deprecated_property_msgs[] = {
+const char * const deprecated_property_msgs[] = {
"",
"Surrogates should never appear in well-formed text, and therefore shouldn't be the basis for line breaking",
"Supplanted by Line_Break property values; see www.unicode.org/reports/tr14"
@@ -384050,5 +384048,5 @@ static const U8 WB_table[23][23] = {
* 7bd6bcbe3813e0cd55e0998053d182b7bc8c97dcfd0b85028e9f7f55af4ad61b lib/unicore/version
* 4bb677187a1a64e39d48f2e341b5ecb6c99857e49d7a79cf503bd8a3c709999b regen/charset_translations.pl
* 03e51b0f07beebd5da62ab943899aa4934eee1f792fa27c1fb638c33bf4ac6ea regen/mk_PL_charclass.pl
- * 8ae37f2b5bbc7d215f63e8d1189754d83a16c6156fd353847f6fcced90c513d5 regen/mk_invlists.pl
+ * 2fb19108265d37fc38920cd3f775c5c9fc25ae8b95be3bf197f47da1dc4989f4 regen/mk_invlists.pl
* ex: set ro: */
diff --git a/locale.c b/locale.c
index a249f80a48..c8f0196095 100644
--- a/locale.c
+++ b/locale.c
@@ -207,7 +207,7 @@ const int categories[] = {
/* The top-most real element is LC_ALL */
-const char * category_names[] = {
+const char * const category_names[] = {
# ifdef USE_LOCALE_NUMERIC
"LC_NUMERIC",
diff --git a/regen/mk_invlists.pl b/regen/mk_invlists.pl
index 55c4afb279..61148282b5 100644
--- a/regen/mk_invlists.pl
+++ b/regen/mk_invlists.pl
@@ -2911,7 +2911,7 @@ foreach my $prop (@props) {
switch_pound_if ('binary_property_tables', 'PERL_IN_REGCOMP_C');
-print $out_fh "\nconst char * deprecated_property_msgs[] = {\n\t";
+print $out_fh "\nconst char * const deprecated_property_msgs[] = {\n\t";
print $out_fh join ",\n\t", map { "\"$_\"" } @deprecated_messages;
print $out_fh "\n};\n";
diff --git a/uni_keywords.h b/uni_keywords.h
index 9f9243fb5c..2808b27682 100644
--- a/uni_keywords.h
+++ b/uni_keywords.h
@@ -6996,6 +6996,6 @@ MPH_VALt match_uniprop( const unsigned char * const key, const U16 key_len ) {
* 7bd6bcbe3813e0cd55e0998053d182b7bc8c97dcfd0b85028e9f7f55af4ad61b lib/unicore/version
* 4bb677187a1a64e39d48f2e341b5ecb6c99857e49d7a79cf503bd8a3c709999b regen/charset_translations.pl
* 03e51b0f07beebd5da62ab943899aa4934eee1f792fa27c1fb638c33bf4ac6ea regen/mk_PL_charclass.pl
- * 8ae37f2b5bbc7d215f63e8d1189754d83a16c6156fd353847f6fcced90c513d5 regen/mk_invlists.pl
+ * 2fb19108265d37fc38920cd3f775c5c9fc25ae8b95be3bf197f47da1dc4989f4 regen/mk_invlists.pl
* c56b78df81e0f96632246052d71580b212546ca02ba4075158965e11d892f21e regen/mph.pl
* ex: set ro: */