From a35d7f90a298ee9ffbe7f3151ea861cbe33eccc6 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 4 Jan 2011 16:59:45 -0700 Subject: [PATCH] mktables: white space-only change A previous commit removed the 'if' around this code, so can outdent it. --- lib/unicore/mktables | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 081314d..d97b12b 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -9346,19 +9346,19 @@ END # If the map begins with a special command to us (enclosed in # delimiters), extract the command(s). - while ($map =~ s/ ^ $CMD_DELIM (.*?) $CMD_DELIM //x) { - my $command = $1; - if ($command =~ / ^ $REPLACE_CMD= (.*) /x) { - $replace = $1; - } - elsif ($command =~ / ^ $MAP_TYPE_CMD= (.*) /x) { - $map_type = $1; - } - else { - $file->carp_bad_line("Unknown command line: '$1'"); - next LINE; - } + while ($map =~ s/ ^ $CMD_DELIM (.*?) $CMD_DELIM //x) { + my $command = $1; + if ($command =~ / ^ $REPLACE_CMD= (.*) /x) { + $replace = $1; } + elsif ($command =~ / ^ $MAP_TYPE_CMD= (.*) /x) { + $map_type = $1; + } + else { + $file->carp_bad_line("Unknown command line: '$1'"); + next LINE; + } + } } if ($default_map eq $CODE_POINT && $map =~ / ^ $code_point_re $/x) -- 2.7.4