jdk/make/sun/awt/CondenseRules.awk
author andrew
Wed, 17 Jun 2009 21:13:04 +0100
changeset 2955 9327f093140c
parent 2 90ce3da70b43
permissions -rw-r--r--
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";
}