- 22 Feb, 2012 24 commits
-
-
Robert Griesemer authored
Not a Go 1 issue, but appeared to be fairly easy to fix. - Note that a few existing test cases look slightly worse but those cases were not representative for real code. All real code looks better now. - Manual move of the comment in go/scanner/example_test.go before applying gofmt. - gofmt -w $GOROOT/src $GOROOT/misc Fixes #3062. R=rsc CC=golang-dev https://golang.org/cl/5674093
-
Robert Griesemer authored
Fixes #3092. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5683075
-
Gustavo Niemeyer authored
Fixes #3082. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5683074
-
Robert Griesemer authored
- renamed firstSentence -> Synopsis - also deal with common abbreviations R=rsc CC=golang-dev https://golang.org/cl/5676088
-
Mikio Hara authored
This CL replaces the last two in source tree. R=golang-dev, r CC=golang-dev https://golang.org/cl/5685080
-
Robert Griesemer authored
R=golang-dev, bradfitz, dsymonds CC=golang-dev https://golang.org/cl/5683072
-
Russ Cox authored
Have to assign them before we create the symbol table. ARM debugging. TBR=r CC=golang-dev https://golang.org/cl/5689067
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5688064
-
Russ Cox authored
TBR=lvd CC=golang-dev https://golang.org/cl/5686063
-
Rob Pike authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5686064
-
Russ Cox authored
As in gdb $(go tool -n 6g). R=golang-dev, r CC=golang-dev https://golang.org/cl/5689066
-
David Symonds authored
The os.Wait function has been removed entirely, so there's no point in fixing code that called it. R=r CC=golang-dev https://golang.org/cl/5685078
-
Devon H. O'Dell authored
Ignore signals while we are spawning a new thread. Previously, a signal arriving just before runtime.minit setting up the signal handler triggers a "double fault" in signal trampolining. Fixes #3017. R=rsc, mikioh.mikioh, minux.ma, adg CC=golang-dev https://golang.org/cl/5684060
-
Joe Poirier authored
fix, and shrink, the gopher icon, txt extensions for license and readme files, minor format changes in the wxs file R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5683054
-
Russ Cox authored
dodata will convert to SNOPTRDATA if appropriate. Should fix arm build (hope springs eternal). TBR=golang-dev CC=golang-dev https://golang.org/cl/5687074
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5685075
-
Russ Cox authored
This is a manual undo of CL 5674098. It does not implement the even less strict spec that we just agreed on, but it gets us back where we were at the last weekly. R=ken2 CC=golang-dev https://golang.org/cl/5683069
-
Russ Cox authored
cc: add #pragma textflag to set it runtime: mark mheap to go into noptr-bss. remove special case in garbage collector Remove the ARM from.flag field created by CL 5687044. The DUPOK flag was already in p->reg, so keep using that. Otherwise test/nilptr.go creates a very large binary. Should fix the arm build. Diagnosed by minux.ma; replacement for CL 5690044. R=golang-dev, minux.ma, r CC=golang-dev https://golang.org/cl/5686060
-
Russ Cox authored
Or, depending on your point of view, make the comparisons satisfy any surrounding boolean type. Also, fix a few foo_bar -> fooBar in code fragments. Fixes #2561. R=golang-dev, r, bradfitz, gri, iant, kevlar CC=golang-dev https://golang.org/cl/5671096
-
Robert Griesemer authored
Fixes #3096. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5690063
-
Devon H. O'Dell authored
R=mikioh.mikioh, rsc CC=golang-dev https://golang.org/cl/5690062
-
Andrew Gerrand authored
R=gri, dsymonds CC=golang-dev https://golang.org/cl/5687071
-
Brad Fitzpatrick authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5688063
-
Brad Fitzpatrick authored
Accept certain non-compliant response headers (in particular, when spaces preceed the colon). All major browser and curl seem to support this, and at least one webserver seems to send these. *shrug* R=golang-dev, gri CC=golang-dev https://golang.org/cl/5690059
-
- 21 Feb, 2012 16 commits
-
-
Rémy Oudompheng authored
R=golang-dev, rsc CC=golang-dev, remy https://golang.org/cl/5688057
-
Andrew Gerrand authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5685070
-
Robert Griesemer authored
R=rsc, r CC=golang-dev https://golang.org/cl/5685069
-
Andrew Gerrand authored
R=ajstarks, r CC=golang-dev https://golang.org/cl/5687070
-
Andrew Gerrand authored
R=bradfitz CC=golang-dev https://golang.org/cl/5690058
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5689056
-
Bobby Powers authored
When installing pprof into the tools directory, it needs to have execute permissions on unix-like systems. Fixes issues 3077. R=golang-dev, rsc, minux.ma CC=golang-dev https://golang.org/cl/5675095
-
Russ Cox authored
Before we were using "ESMTP" in the banner as a clue, but that is not required by the RFC and breaks mailing to smtp.yandex.ru. Fixes #3045. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5687066
-
Russ Cox authored
A fault during malloc might lead to the program's first call to findfunc, which would in turn call malloc. Don't do that. Fixes #1777. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5689047
-
Shenghou Ma authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5689063
-
Mike Rosset authored
R=golang-dev, minux.ma, rsc CC=golang-dev https://golang.org/cl/5686058
-
Mike Rosset authored
R=golang-dev, rsc, r, r CC=golang-dev https://golang.org/cl/5673093
-
Adam Langley authored
Without -d, bison doesn't generate y.tab.h. R=rsc CC=golang-dev https://golang.org/cl/5685065
-
Marcel van Lohuizen authored
by other low-level libraries, like collate. Extra care has been given to optimize the performance of normalizing to NFD, as this is what will be used by the collator. The overhead of checking whether a string is normalized vs simply decomposing a string is neglible. Assuming that most strings are in the FCD form, this iterator can be used to decompose strings and normalize with minimal overhead. R=r CC=golang-dev https://golang.org/cl/5676057
-
Rémy Oudompheng authored
The supposedly overflowing variable was registerized. R=golang-dev, r CC=golang-dev https://golang.org/cl/5687061
-
Rémy Oudompheng authored
Also cleanup the resolveName method. Fixes failure on go/build declaration: var ToolDir = filepath.Join(...) R=golang-dev, bradfitz CC=golang-dev, remy https://golang.org/cl/5681043
-