diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/unicore/mktables | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 08f3ff9f99..2809439d64 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -17366,15 +17366,15 @@ sub write_all_tables() { # Build up its definition range-by-range. my $definition = ""; while (defined (my $range = shift @ranges)) { - my $end = $range->end; - if ($end < $MAX_WORKING_CODEPOINT) { - $count++; - $end = "\n" . ($end + 1); - } - else { # Extends to infinity, hence no 'end' - $end = ""; - } - $definition .= "\n" . $range->start . $end; + my $end = $range->end; + if ($end < $MAX_WORKING_CODEPOINT) { + $count++; + $end = "\n" . ($end + 1); + } + else { # Extends to infinity, hence no 'end' + $end = ""; + } + $definition .= "\n" . $range->start . $end; } $definition = "V$count" . $definition; $filename = @inline_definitions; |