charnames.t: indent newly formed block
authorKarl Williamson <public@khwilliamson.com>
Wed, 17 Nov 2010 01:24:55 +0000 (18:24 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Thu, 18 Nov 2010 20:58:23 +0000 (12:58 -0800)
This is a white-space only patch to indent the code that was put into an
if block by the previous commit

lib/charnames.t

index 4271b58..46f206a 100644 (file)
@@ -1015,19 +1015,20 @@ is("\N{U+1D0C5}", "\N{BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON CHROMA VASIS}");
         if ($test_count == 0) {
             $test_count = 1;
             if ($run_slow_tests < $RUN_SLOW_TESTS_EVERY_CODE_POINT) {
-            $end_block++;
-
-            # Keep coalescing until find a block that has something in
-            # it.  But don't cross plane boundaries (the 16 bits below),
-            # so there is at least one test for every plane.
-            while ($end_block < $block_count
-                   && $end_block >> (16 - $block_size_bits) == $block >> (16 - $block_size_bits)
-                   && ! $algorithmic_names_count[$end_block]
-                   && ! $regular_names_count[$end_block])
-            {
                 $end_block++;
-            }
-            $end_block--;   # Back-off to a block that has no defined names
+
+                # Keep coalescing until find a block that has something in
+                # it.  But don't cross plane boundaries (the 16 bits below),
+                # so there is at least one test for every plane.
+                while ($end_block < $block_count
+                       && $end_block >> (16 - $block_size_bits)
+                                        == $block >> (16 - $block_size_bits)
+                       && ! $algorithmic_names_count[$end_block]
+                       && ! $regular_names_count[$end_block])
+                {
+                    $end_block++;
+                }
+                $end_block--;   # Back-off to a block that has no defined names
             }
         }