summaryrefslogtreecommitdiff
path: root/lib/charnames.t
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-11-16 18:24:55 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-11-18 12:58:23 -0800
commit6efce82dbb7230a1ac8fdcd073e50b4c2858d669 (patch)
treed88cae2c909b154acb539b69a39e397ab7db3e0e /lib/charnames.t
parent3426d2074acc78c55cd704c9858e2330d3ea50e3 (diff)
downloadperl-6efce82dbb7230a1ac8fdcd073e50b4c2858d669.tar.gz
charnames.t: indent newly formed block
This is a white-space only patch to indent the code that was put into an if block by the previous commit
Diffstat (limited to 'lib/charnames.t')
-rw-r--r--lib/charnames.t25
1 files changed, 13 insertions, 12 deletions
diff --git a/lib/charnames.t b/lib/charnames.t
index 4271b58d33..46f206ac4d 100644
--- a/lib/charnames.t
+++ b/lib/charnames.t
@@ -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
}
}