summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-03-18 12:07:55 -0600
committerKarl Williamson <public@khwilliamson.com>2014-03-18 12:51:23 -0600
commitd0d250ca67bc95d33e27befe918b74aee7e11c8b (patch)
tree4831f7245fe34584703b1cdf1dafdf491bd01593 /lib
parent3854b4b8c7222f0112e93a0e5dd89abcb5f7518e (diff)
downloadperl-d0d250ca67bc95d33e27befe918b74aee7e11c8b.tar.gz
mktables: White-space only
This indents code to conform to the new block created in the previous commit
Diffstat (limited to 'lib')
-rw-r--r--lib/unicore/mktables18
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;