- 15 Mar, 2012 10 commits
-
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5820064
-
Russ Cox authored
srcLink includes the / now; adding another yields //, which means something else entirely in URLs. Fixes #3327. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5823060
-
Stefan Nilsson authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5833047
-
Brad Fitzpatrick authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5834049
-
Yasuhiro Matsumoto authored
R=golang-dev CC=golang-dev https://golang.org/cl/5823058
-
Andrew Gerrand authored
Fixes #3241. R=golang-dev, r CC=golang-dev https://golang.org/cl/5835043
-
Alex Brainman authored
Fixes #3321. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5831043
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, March 31, 2011. http://blog.golang.org/2011/03/godoc-documenting-go-code.html R=golang-dev, adg CC=golang-dev https://golang.org/cl/5830043
-
Robert Hencke authored
R=golang-dev, bradfitz, dsymonds, dave, r CC=golang-dev https://golang.org/cl/5795069
-
Andrew Gerrand authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5781069
-
- 14 Mar, 2012 21 commits
-
-
Stefan Nilsson authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5820048
-
Brad Fitzpatrick authored
Makes certain virus scanners happier. R=golang-dev, rsc, adg CC=golang-dev https://golang.org/cl/5823053
-
Andrew Gerrand authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5819048
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/5820052
-
Russ Cox authored
Fixes #3306. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5821048
-
Russ Cox authored
Fixes #3320. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5824051
-
Shenghou Ma authored
This function uses 48-byte of precious non-split stack for every callback function, and without this CL, it can easily overflow the non-split stack. I encountered this when trying to enable misc/cgo/test on windows/amd64. R=rsc CC=golang-dev https://golang.org/cl/5784075
-
Volker Dobler authored
Direct reference to go help build where the flags are described. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5825046
-
Shenghou Ma authored
Also update documentation about IsExist() and IsNotExist(), they are not about files only. R=rsc CC=golang-dev https://golang.org/cl/5794073
-
Brad Fitzpatrick authored
R=golang-dev, bsiegert, rsc CC=golang-dev https://golang.org/cl/5822046
-
Andrew Gerrand authored
Fixes #3317. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5784074
-
Yasuhiro Matsumoto authored
Currently, ftdetect/gofiletype.vim set fileencodings to open the file as utf-8 encoding event if the file does not contain multibyte characters. But fileencodings is global option. $ vim foo.txt :set fileencodings utf-8,ucs-bom,cp932 $ vim foo.go :set fileencodings utf-8 This change restore fileencodings before opening the file. Also added specify fileformats=unix. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5718045
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5823045
-
Rob Pike authored
Fixes #3272. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5819046
-
Mikio Hara authored
Fixes #3314. Fixes #3101 (again). R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5820047
-
Mikio Hara authored
Fixes #3101 (again). R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5825043
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/5784072
-
Andrew Gerrand authored
src/cmd/godoc/filesystem.go:337:10: os.PathError struct literal uses untagged fields src/cmd/godoc/filesystem.go:355:10: os.PathError struct literal uses untagged fields R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5820046
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, September 23, 2010. http://blog.golang.org/2010/09/go-concurrency-patterns-timing-out-and.html Update #2547. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5815044
-
Robert Griesemer authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5820045
-
Johan Euphrosine authored
Originally published on The Go Programming Language Blog, September 29, 2011. http://blog.golang.org/2011/09/go-imagedraw-package.html Update #2547. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5755057
-
- 13 Mar, 2012 9 commits
-
-
Brad Fitzpatrick authored
Fixes #3281 R=golang-dev, r CC=golang-dev https://golang.org/cl/5819044
-
Rob Pike authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5821044
-
Robert Griesemer authored
A node spans multiple lines if the line difference between start and end point is > 0 (rather than > 1). Fixes some odd cases introduced by CL 5706055; pointed out by dsymonds. Added corresponding test case. The other change in the .golden file reverts to the status before the CL mentioned above and is correct. gofmt -w src misc changes godoc.go back to where it was before the CL mentioned above. Fixes #3304. R=dsymonds, rsc CC=golang-dev https://golang.org/cl/5820044
-
Shenghou Ma authored
Also fix a typo in comment. R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5808043
-
Rob Pike authored
1) Poor error checking in variable declarations admitted $x=2 or even $x%2. 2) Need white space or suitable termination character after identifiers, so $x+2 doesn't parse, in case we want it to mean something one day. Number 2 in particular prevents mistakes that we will have to honor later and so is necessary for Go 1. Fixes #3270. Fixes #3271. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5795073
-
Maxim Pimenov authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5801043
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5794077
-
Alex Brainman authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/5797079
-
Shenghou Ma authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5783092
-