jdk/make/sun/awt/CondenseRules.awk
author kvn
Thu, 27 Oct 2011 18:20:50 -0700
changeset 10975 446510be531a
parent 2 90ce3da70b43
permissions -rw-r--r--
7105611: Set::print() is broken Summary: Reimplemented class VSetI_ to restore Set::print(). Reviewed-by: never

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