From d0d250ca67bc95d33e27befe918b74aee7e11c8b Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 18 Mar 2014 12:07:55 -0600 Subject: [PATCH] mktables: White-space only This indents code to conform to the new block created in the previous commit --- lib/unicore/mktables | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 08f3ff9..2809439 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; -- 2.7.4