mktables: White-space only
authorKarl Williamson <public@khwilliamson.com>
Tue, 18 Mar 2014 18:07:55 +0000 (12:07 -0600)
committerKarl Williamson <public@khwilliamson.com>
Tue, 18 Mar 2014 18:51:23 +0000 (12:51 -0600)
This indents code to conform to the new block created in the previous
commit

lib/unicore/mktables

index 08f3ff9..2809439 100644 (file)
@@ -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;