diff options
author | Robert Griesemer <gri@golang.org> | 2009-01-20 15:22:33 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-01-20 15:22:33 -0800 |
commit | 8498cd2641a58da02b38cab7a7ea9efb1064f243 (patch) | |
tree | 3e6ba1897a7e863de75e01414a44ac1fe32d0bcb /usr/gri/pretty/compilation.go | |
parent | 4ae0ed29a283c16d1c83ef704c4d75170c3801e6 (diff) | |
download | golang-8498cd2641a58da02b38cab7a7ea9efb1064f243.tar.gz |
- updated pretty (removed "export")
R=r
OCL=23134
CL=23134
Diffstat (limited to 'usr/gri/pretty/compilation.go')
-rw-r--r-- | usr/gri/pretty/compilation.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/gri/pretty/compilation.go b/usr/gri/pretty/compilation.go index cb4d62aa3..725c6fa50 100644 --- a/usr/gri/pretty/compilation.go +++ b/usr/gri/pretty/compilation.go @@ -30,7 +30,6 @@ type Flags struct { Columns bool; Testmode bool; Tokenchan bool; - Naming bool; } @@ -136,7 +135,7 @@ func Compile(src_file string, flags *Flags) (*AST.Program, int) { } var parser Parser.Parser; - parser.Open(flags.Verbose, flags.Sixg, flags.Deps, flags.Naming, &scanner, tstream); + parser.Open(flags.Verbose, flags.Sixg, flags.Deps, &scanner, tstream); prog := parser.ParseProgram(); |