6851515: awt_p.h incorporates a chunk of the XRender header
Summary: Use XRender header directly rather than copying chunks locally
Reviewed-by: anthony, ohair
BEGIN {
previous="";
prefix="";
ORS="";
OFS="";
}
{
if ($1 != previous) {
if (previous != "") {
print "\n\n";
}
previous = $1;
print $1;
prefix="\t";
}
print prefix $2;
prefix=" ";
}
END {
print "\n";
}