| Age | Commit message (Collapse) | Author | Files | Lines | 
|---|
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  | gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench
gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench
delete unused imports
R=r
CC=golang-dev
http://codereview.appspot.com/224062 | 
|  | - Identifiers refer now to the language entity (Object)
	  that they denote. At the moment this is at best an
	  approximation.
	- Initial data structures for language entities (Objects)
          and expression types (Type) independent of the actual
	  type notations.
	- Initial support for declaring and looking up identifiers.
	- Updated various dependent files and added support functions.
	- Extensively tested to avoid breakage. This is an AST change.
R=rsc
CC=golang-dev, rog
http://codereview.appspot.com/189080 | 
|  | 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
	       1st set of files.
R=rsc
CC=agl, golang-dev, iant, ken2, r
http://codereview.appspot.com/180047 | 
|  | R=rsc, r
http://go/go-review/1025029 | 
|  | HTML vs Html, URL vs Url, HTTP vs Http,
current source is 6:1 in favor of the former,
so change instances of the latter.
R=r
CC=go-dev
http://go/go-review/1024026 | 
|  | R=rsc
http://go/go-review/1013014 |