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

@@ -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;
} }