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 65092de98f
commit 0eb3a2440a
5 changed files with 41007 additions and 41003 deletions

View File

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