source: trunk/openjdk/jdk/make/sun/awt/CondenseRules.awk

Last change on this file was 2, checked in by dmik, 15 years ago

Imported OpenJDK 6 b19 sources from Oracle.

File size: 255 bytes
Line 
1BEGIN {
2 previous="";
3 prefix="";
4 ORS="";
5 OFS="";
6}
7{
8 if ($1 != previous) {
9 if (previous != "") {
10 print "\n\n";
11 }
12 previous = $1;
13 print $1;
14 prefix="\t";
15 }
16 print prefix $2;
17 prefix=" ";
18}
19END {
20 print "\n";
21}
Note: See TracBrowser for help on using the repository browser.