Commit f591591a authored by Robert Griesemer's avatar Robert Griesemer

remove superfluous tracing support

R=rsc
DELTA=5  (0 added, 4 deleted, 1 changed)
OCL=35930
CL=35930
parent 357b770d
......@@ -25,7 +25,7 @@ var (
// debugging support
comments = flag.Bool("comments", true, "print comments");
trace = flag.Bool("trace", false, "print names of processed files to stderr and parse traces to stdout");
trace = flag.Bool("trace", false, "print parse trace");
// layout control
align = flag.Bool("align", true, "align columns");
......@@ -80,10 +80,6 @@ func isGoFile(d *os.Dir) bool {
func processFile(filename string) os.Error {
if *trace {
fmt.Fprintln(os.Stderr, filename);
}
src, err := io.ReadFile(filename);
if err != nil {
return err;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment