From e4bd81f903362d998f7bfc02095935408aff0bc5 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 15 Dec 2009 15:35:38 -0800 Subject: 1) Change default gofmt default settings for parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 3rd set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180048 --- src/pkg/http/client_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/pkg/http/client_test.go') diff --git a/src/pkg/http/client_test.go b/src/pkg/http/client_test.go index 76aad7e81..6787825d8 100644 --- a/src/pkg/http/client_test.go +++ b/src/pkg/http/client_test.go @@ -7,20 +7,20 @@ package http import ( - "io/ioutil"; - "strings"; - "testing"; + "io/ioutil" + "strings" + "testing" ) func TestClient(t *testing.T) { // TODO: add a proper test suite. Current test merely verifies that // we can retrieve the Google robots.txt file. - r, _, err := Get("http://www.google.com/robots.txt"); - var b []byte; + r, _, err := Get("http://www.google.com/robots.txt") + var b []byte if err == nil { - b, err = ioutil.ReadAll(r.Body); - r.Body.Close(); + b, err = ioutil.ReadAll(r.Body) + r.Body.Close() } if err != nil { t.Error(err) -- cgit v1.2.3