Skip to content

Commit

Permalink
Update table_cleanup.pl to allow for the wrapping character (+)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehaase authored and fletcher committed Jul 27, 2010
1 parent ccd8557 commit 3f42aab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Utilities/table_cleanup.pl
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
$goal_length--;
$result = ":";
}
if ($cell =~ /\:$/) {
if ($cell =~ /[\:\+]$/) {
$goal_length--;
}
for (my $i=0;$i < $goal_length;$i++){
Expand All @@ -177,7 +177,9 @@
if ($cell =~ /\:$/) {
$result .=":";
}
if ($cell =~ /\+$/) {
$result .="+";
}
$count++;
$opening . "$result" . $ending;
}xsge;
Expand Down

0 comments on commit 3f42aab

Please sign in to comment.