summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-11-07contribute.html fixesRuss Cox1-19/+89
R=r http://go/go-review/1025019
2009-11-07tutorial fixesRuss Cox4-118/+106
R=r CC=go-dev http://go/go-review/1024014
2009-11-07FAQ editsRuss Cox1-10/+10
R=r CC=go-dev http://go/go-review/1024015
2009-11-07require Mercurial 1.3 again (how did that get dropped?)Russ Cox1-17/+40
avoid deprecation warning about os.popen3 R=r http://go/go-review/1026018
2009-11-07language design FAQ editsRuss Cox1-8/+12
R=r http://go/go-review/1026019
2009-11-07fix a few style nits; arrange the doc list inRuss Cox2-10/+9
an order we want people to read the docs. R=r CC=go-dev http://go/go-review/1025017
2009-11-07Add flags of type float to the flag package.Vish Subramanian2-2/+71
R=r, rsc http://go/go-review/1026011 Committer: Rob Pike <r@golang.org>
2009-11-07- support to extract one-line package synopsis for package listingsRobert Griesemer2-3/+26
- formatting in dirs.html is crude, needs better html (open to suggestions), but shows the synopsis - many package comments should probably be adjusted such that the first sentence is more concise R=rsc, iant http://go/go-review/1025014
2009-11-07- blank before opening { for multi-line composite literals (as preferred by r)Robert Griesemer1-14/+37
- blank padding around composite literal contents for a less dense look (most if not all composite literals were written in that style before gofmt ran through them) - corresponding (internal) flag: compositeLitBlank - don't print a semi after a one-statement statement list (as preferred by r) - corresponding (internal flag): fewerSemis - the number of changes in nodes.go is huge because of the removed semis; hg mail requires that I gofmt the file before With both flags set to false, this CL causes no gofmt formatting change. We can turn them on if we like it (and then remove the flags). Will submit with flags disabled. R=rsc, r http://go/go-review/1025015
2009-11-07Ignore more unimportant files.Ian Lance Taylor1-2/+6
- Emacs backup files. - *.orig files left by hg merge conflicts. - core files. - generated enam.c files. - runtime.acid now has an architecture. R=rsc http://go/go-review/1026017
2009-11-07new style; live at http://r45:3456/Russ Cox3-17/+34
R=r CC=go-dev http://go/go-review/1026015
2009-11-07change --enable-languages flag to include c, c++ in first mentionRob Pike1-1/+1
R=iant http://go/go-review/1026016
2009-11-06add an item about open sourceRob Pike1-0/+6
R=rsc CC=go-dev http://go/go-review/1025013
2009-11-06Typo fixes.David Symonds6-6/+6
R=rsc CC=go-dev http://go/go-review/1026014 Committer: Russ Cox <rsc@golang.org>
2009-11-06codereview: print gofmt message when abortingRuss Cox1-3/+3
R=r CC=vish http://go/go-review/1026013
2009-11-068g has an optimizer; update its descriptionRob Pike1-5/+6
R=rsc CC=go-dev http://go/go-review/1025010
2009-11-06Contribute code instructions to use "hg codereview-login" did not work for ↵Vish Subramanian1-1/+1
me. I had to use "hg code-login". R=r, rsc http://go/go-review/1024012 Committer: Rob Pike <r@golang.org>
2009-11-06Add vish to contributors.Vish Subramanian1-0/+1
R=r, rsc http://go/go-review/1026012 Committer: Rob Pike <r@golang.org>
2009-11-06make temporary google.com -> golang.org hack more sophisticatedRuss Cox1-8/+8
R=r http://go/go-review/1024013
2009-11-068g optimizerKen Thompson9-14/+2499
R=rsc http://go/go-review/1025011
2009-11-06format composite literal types that are "short" struct type literalsRobert Griesemer4-21/+123
on one line for a more compact representation of some composite Literals R=rsc http://go/go-review/1025008
2009-11-06- application of gofmt with one-line composite literal structs enabledRobert Griesemer3-180/+46
- this CL is dependent on CL 1025008 R=r, rsc http://go/go-review/1025009
2009-11-06arm port description.Kai Backman1-3/+2
R=r http://go/go-review/1026010
2009-11-06Rename go_gccgo_setup to gccgo_install.Ian Lance Taylor3-3/+3
R=rsc CC=go-dev http://go/go-review/1026009
2009-11-06- one-line funcs in miscRobert Griesemer1-3/+1
gofmt -w misc R=rsc http://go/go-review/1025007
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer213-3670/+1297
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-11-06Expand section on building gccgo.Ian Lance Taylor1-4/+25
R=r http://go/go-review/1026008
2009-11-06Add a document on contributing to gccgo.Ian Lance Taylor2-1/+97
R=r, rsc CC=go-dev http://go/go-review/1025005
2009-11-06updated godoc documentationRobert Griesemer1-3/+17
R=r http://go/go-review/1026007
2009-11-06fix argument order bug for floatKai Backman1-2/+1
R=rsc http://go/go-review/1025006
2009-11-06with rsc: argsize rounding to 8 smashes stack data on 32bit machines.Kai Backman1-1/+5
R=rsc http://go/go-review/1024011
2009-11-06Added tag release, release.2009-11-06 for changeset 1f0a01c93d30Russ Cox0-0/+0
2009-11-06replaced "Expressive" with "expressive" for a cleaner lookRobert Griesemer1-1/+1
R=r http://go/go-review/1024010
2009-11-06big: fix carry error, add test case.Adam Langley4-17/+31
crypto/x509: reenable tests. R=gri CC=go-dev http://go/go-review/1026004
2009-11-06minor fixups by gofmtRobert Griesemer2-3/+2
R=agl http://go/go-review/1024009
2009-11-06expand "this is not just mercurial" sectionRuss Cox1-8/+33
R=r CC=go-dev http://go/go-review/1024008
2009-11-06contribute.htmlRuss Cox1-23/+515
R=r, iant CC=go-dev http://go/go-review/1022007
2009-11-06require gofmt for all $GOROOT/src/.../*.go.Russ Cox1-8/+31
try harder to post messages to rietveld. R=gri, r CC=go-dev http://go/go-review/1024006
2009-11-06crypto/x509: build fix for 32-bitAdam Langley1-0/+14
TBR=rsc R=rsc CC=go-dev http://go/go-review/1024007
2009-11-06Fix add-back division test so that it triggers the add-back case onAdam Langley1-10/+13
both 64 and 32 bit platforms. Also, uncomment some tests that were still commented out from debugging. R=gri, rsc CC=go-dev http://go/go-review/1026003
2009-11-05gofmt -w miscRobert Griesemer4-12/+11
R=rsc http://go/go-review/1025004
2009-11-05 make 5g executables run on android/arm hardware. change OABIKai Backman3-10/+22
usage to EABI. go/test: passes 85% (296/347) on random android phone. R=rsc http://go/go-review/1024003
2009-11-05gofmt src/cmd/goyaccRobert Griesemer1-583/+445
(with this change: gofmt -l src/cmd/ | wc is 0 0 0) R=ken, rsc http://go/go-review/1024005
2009-11-05gofmt'ed src/cmdRobert Griesemer4-32/+32
R=rsc http://go/go-review/1024004
2009-11-05- fix elf.go manually so it is idempotent for gofmtRobert Griesemer1-8/+5
- with this change, `gofmt -l src/pkg | wc` is 0 R=rsc http://go/go-review/1025002
2009-11-05missing piece gofmt'ed in reflectRobert Griesemer1-36/+108
R=r, rsc http://go/go-review/1025001
2009-11-05gofmt'ed more stragglersRobert Griesemer5-39/+39
R=rsc http://go/go-review/1019004
2009-11-05gofmt'ed bigRobert Griesemer3-8/+8
R=agl http://go/go-review/1022003
2009-11-05gofmt'ed various stragglersRobert Griesemer4-408/+408
R=rsc http://go/go-review/1022002
2009-11-05gofmt'ed more stragglersRobert Griesemer2-37/+37
(now down to a handfull of files in pkg) R=rsc http://go/go-review/1019006