unicode: Avoid adding trailing spaces to tables definitions

This commit is contained in:
Marco Trevisan (Treviño)
2022-09-05 13:01:35 +02:00
parent 5f4e14a306
commit fb5c6e0926
4 changed files with 40769 additions and 40765 deletions

View File

@@ -795,7 +795,7 @@ sub print_row
my ($column) = 4; my ($column) = 4;
for ($i = $start; $i < $start + 256; ++$i) for ($i = $start; $i < $start + 256; ++$i)
{ {
print OUT ", " print OUT ","
if $i > $start; if $i > $start;
my ($text) = $values[$i - $start]; my ($text) = $values[$i - $start];
if (length ($text) + $column + 2 > 78) if (length ($text) + $column + 2 > 78)
@@ -803,6 +803,10 @@ sub print_row
print OUT "\n "; print OUT "\n ";
$column = 4; $column = 4;
} }
else
{
print OUT " "
}
print OUT $text; print OUT $text;
$column += length ($text) + 2; $column += length ($text) + 2;
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff