mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
unicode: Avoid adding trailing spaces to tables definitions
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
48244
glib/gunibreak.h
48244
glib/gunibreak.h
File diff suppressed because it is too large
Load Diff
31922
glib/gunichartables.h
31922
glib/gunichartables.h
File diff suppressed because it is too large
Load Diff
1362
glib/gunidecomp.h
1362
glib/gunidecomp.h
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user