Received: (from majordom@localhost) by hyperreal.org (8.8.5/8.8.5) id XAA08216; Sat, 13 Sep 1997 23:34:14 -0700 (PDT) Received: from paris.ics.uci.edu (mmdf@paris.ics.uci.edu [128.195.1.50]) by hyperreal.org (8.8.5/8.8.5) with SMTP id XAA08212 for ; Sat, 13 Sep 1997 23:34:10 -0700 (PDT) Received: from kiwi.ics.uci.edu by paris.ics.uci.edu id aa03905; 13 Sep 97 23:33 PDT To: new-httpd@apache.org Subject: Re: indent In-reply-to: Your message of "Sat, 13 Sep 1997 08:37:04 EDT." <97091308370391@decus.org> Date: Sat, 13 Sep 1997 23:24:05 -0700 From: "Roy T. Fielding" Message-ID: <9709132333.aa03905@paris.ics.uci.edu> Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org > IMHO we're not ready to run indent across the source yet.. at least > not with the current .indent.pro (apachen/src/.indent.pro). I tested that with SUNWspro-3.0.1 indent. The one on hyperreal is from BSD, which should probably be deleted and replaced with Gnu indent. In any case, running indent is *not* an automatic process. It will normally screw up block comments that do not start in column 1, but you can avoid that by editing the file first and adding a "-". For example, replace /* This is a * nicely formatted * block comment */ with /*-This is a * nicely formatted * block comment */ and it won't reformat that comment (at least with the Sun version, there might be similar pitfalls/workaround with Gnuindent). You can then go back afterword and remove the dash. We also need a status file to split up the effort and prevent multiple indents on a single file. I'll commit one in a moment. Above all, only do one file at a time, don't fix any bugs until after the reformat has been committed, and make sure it compiles before then. ....Roy