File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -99537,7 +99537,7 @@ static const UV XPosixXDigit_invlist[] = { /* for EBCDIC POSIX-BC */
99537
99537
* 1a0687fb9c6c4567e853913549df0944fe40821279a3e9cdaa6ab8679bc286fd lib/unicore/extracted/DLineBreak.txt
99538
99538
* 40bcfed3ca727c19e1331f6c33806231d5f7eeeabd2e6a9e06a3740c85d0c250 lib/unicore/extracted/DNumType.txt
99539
99539
* a18d502bad39d527ac5586d7bc93e29f565859e3bcc24ada627eff606d6f5fed lib/unicore/extracted/DNumValues.txt
99540
- * d5895407f73f1bcb0d7ad39e955c0e88a9145e401e868572849eeb134e669269 lib/unicore/mktables
99540
+ * db70131a57e33d508d06ac16a9637b368182ec6b88085c43d83cdf9ccb3590fc lib/unicore/mktables
99541
99541
* 462c9aaa608fb2014cd9649af1c5c009485c60b9c8b15b89401fdc10cf6161c6 lib/unicore/version
99542
99542
* c6884f4d629f04d1316f3476cb1050b6a1b98ca30c903262955d4eae337c6b1e regen/charset_translations.pl
99543
99543
* 8a097f8f726bb1619af2f27f149ab87e60a1602f790147e3a561358be16abd27 regen/mk_invlists.pl
Original file line number Diff line number Diff line change @@ -6379,7 +6379,15 @@ END
6379
6379
$range_name = "Hangul Syllable";
6380
6380
}
6381
6381
6382
- if ($i != $start || $range_end < $end) {
6382
+ # If the annotation would just repeat what's
6383
+ # already being output as the range, skip it.
6384
+ # (When an inversion list is being written, it
6385
+ # isn't a repeat, as that always is in
6386
+ # decimal)
6387
+ if ( $write_as_invlist
6388
+ || $i != $start
6389
+ || $range_end < $end)
6390
+ {
6383
6391
if ($range_end < $MAX_WORKING_CODEPOINT)
6384
6392
{
6385
6393
$annotation = sprintf "%04X..%04X",
@@ -6393,6 +6401,7 @@ END
6393
6401
else { # Indent if not displaying code points
6394
6402
$annotation = " " x 4;
6395
6403
}
6404
+
6396
6405
if ($range_name) {
6397
6406
$annotation .= " $age[$i]" if $age[$i];
6398
6407
$annotation .= " $range_name";
Original file line number Diff line number Diff line change 2514
2514
* 1a0687fb9c6c4567e853913549df0944fe40821279a3e9cdaa6ab8679bc286fd lib/unicore/extracted/DLineBreak.txt
2515
2515
* 40bcfed3ca727c19e1331f6c33806231d5f7eeeabd2e6a9e06a3740c85d0c250 lib/unicore/extracted/DNumType.txt
2516
2516
* a18d502bad39d527ac5586d7bc93e29f565859e3bcc24ada627eff606d6f5fed lib/unicore/extracted/DNumValues.txt
2517
- * d5895407f73f1bcb0d7ad39e955c0e88a9145e401e868572849eeb134e669269 lib/unicore/mktables
2517
+ * db70131a57e33d508d06ac16a9637b368182ec6b88085c43d83cdf9ccb3590fc lib/unicore/mktables
2518
2518
* 462c9aaa608fb2014cd9649af1c5c009485c60b9c8b15b89401fdc10cf6161c6 lib/unicore/version
2519
2519
* c6884f4d629f04d1316f3476cb1050b6a1b98ca30c903262955d4eae337c6b1e regen/charset_translations.pl
2520
2520
* d9c04ac46bdd81bb3e26519f2b8eb6242cb12337205add3f7cf092b0c58dccc4 regen/regcharclass.pl
You can’t perform that action at this time.
0 commit comments