summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-11-14move evaluation of null-matching instructions one iteration earlier.Rob Pike3-41/+61
performance hit of about 20% but more intuitive results for submatches. we need a good regexp package at some point. Fixes issue 110. R=rsc CC=golang-dev http://codereview.appspot.com/152131
2009-11-14 xml: Fixed CDATA parsing.Abhinav Gupta2-5/+9
Fixes issue 128. R=r, rsc http://codereview.appspot.com/154126 Committer: Russ Cox <rsc@golang.org>
2009-11-14Added self to AUTHORS and CONTRIBUTORS.Abhinav Gupta2-0/+2
R=rsc http://codereview.appspot.com/154128 Committer: Russ Cox <rsc@golang.org>
2009-11-14typosRuss Cox2-2/+2
Fixes issue 171. Fixes issue 172. R=agl1 http://codereview.appspot.com/154136
2009-11-13Created new Conn.Flush() public method so the fd pipeline can be drained ↵David Titarenco1-2/+10
arbitrarily by the user. Commented both flush methods so people know what they are looking at. This is a necessary fix for streaming and long polling HTTP services. Fixes issue 93. R=r, rsc, david.titarenco http://codereview.appspot.com/154099 Committer: Russ Cox <rsc@golang.org>
2009-11-13Added self to AUTHORS and CONTRIBUTORS prior to first submission.David Titarenco2-0/+4
R=rsc http://codereview.appspot.com/153057 Committer: Russ Cox <rsc@golang.org>
2009-11-13Remove unnecessary int(h) casts in image.go.Nigel Tao1-5/+5
R=rsc http://codereview.appspot.com/154125 Committer: Russ Cox <rsc@golang.org>
2009-11-13fix typoRob Pike1-1/+1
R=rsc http://codereview.appspot.com/152128
2009-11-13Correct indentation for go-mode where a close brace following a semi-James Aguilar1-4/+15
colon-less statement would be indented one stop too many. R=rsc, aclements CC=aclements http://codereview.appspot.com/154096 Committer: Russ Cox <rsc@golang.org>
2009-11-13Add myself to the contributors file.James Aguilar1-2/+5
R=rsc http://codereview.appspot.com/152101 Committer: Russ Cox <rsc@golang.org>
2009-11-13json: minor comment fix.Adam Langley1-1/+1
I screwed up and didn't write one of the code review changes to disk before submitting. TBR=rsc R=rsc http://codereview.appspot.com/154122
2009-11-13Explain whyRob Pike1-1/+6
-flag true does not work although -flag=true does. Fixes issue 139. R=iant CC=golang-dev http://codereview.appspot.com/154118
2009-11-13test/run: use bash, not sh.Russ Cox1-2/+2
use bash builtin time instead of assuming /usr/bin/time exists. R=r http://codereview.appspot.com/152124
2009-11-13json: allow one to unmarshal a top-level JSON array.Adam Langley2-2/+43
Fixies issue 114. R=rsc CC=golang-dev http://codereview.appspot.com/154121
2009-11-13path.TestWalk: disable error case if rootRuss Cox1-23/+25
(chmod 0 doesn't cause errors for root) Fixes issue 22. R=gri http://codereview.appspot.com/152120
2009-11-13json: fix addressing of slice indexes that are multiples of 8.Adam Langley2-1/+32
Fixes issue 147. R=rsc CC=golang-dev http://codereview.appspot.com/152123
2009-11-13runtime: warn about SELinux based mmap failures on Linux.Adam Langley5-5/+32
SELinux will cause mmap to fail when we request w+x memory unless the user has configured their policies. We have a warning in make.bash, but it's quite likely that the policy will be reset at some point and then all their binaries start failing. This patch prints a warning on Linux when mmap fails with EACCES. R=rsc CC=golang-dev http://codereview.appspot.com/152086
2009-11-12yet another attempt to avoid conflicts withRuss Cox10-10/+29
<stdio.h>, which we weren't even #including R=r http://codereview.appspot.com/154108
2009-11-12remove dead code from testRob Pike1-68/+8
R=rsc CC=golang-dev http://codereview.appspot.com/152118
2009-11-12sudo.bash tries to install acid and db, which don't exist any moreRob Pike1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/152117
2009-11-12Teach emacs M-x gofmt to save region/restrictionsKevin Ballard1-1/+12
R=agl, agl1 http://codereview.appspot.com/152078 Committer: Adam Langley <agl@golang.org>
2009-11-12codereview: clpatch tweaksRuss Cox1-3/+7
R=agl1 http://codereview.appspot.com/152114
2009-11-12Remove -align flag from gofmt.Robert Griesemer2-6/+0
(Making it work correctly with -spaces is a bit of work and the output won't make much sense as it is intended as input to tabwriter.) Fixes issue 100. R=rsc http://codereview.appspot.com/154102
2009-11-12fix style nit ignored in previous clKai Backman1-1/+1
R=rsc http://codereview.appspot.com/152110
2009-11-12add support for pre arm v6 cas. set GOARM=5 to enable.Kai Backman3-1/+46
R=rsc http://codereview.appspot.com/154101
2009-11-12tag new release at 4015/cb140bac9ab0Russ Cox0-0/+0
R=r http://codereview.appspot.com/154100
2009-11-12test/run: unset GREP_OPTIONSRuss Cox1-0/+1
Fixes issue 116. R=r http://codereview.appspot.com/152106
2009-11-12os.TestSeek: use a smaller but still 64-bit seek offset.Russ Cox1-3/+8
Might fix issue 91. R=r http://codereview.appspot.com/152108
2009-11-12produce helpful error when gotest doesn't find a MakefileRob Pike1-2/+7
Fixes issue 117. R=rsc, agl1 CC=golang-dev http://codereview.appspot.com/152107
2009-11-12add a paragraph about semicolons to the tutorial.Rob Pike4-3/+25
fix a typo caught by kakugawa@gmail.com Fixes issue 92. R=rsc CC=golang-dev http://codereview.appspot.com/152105
2009-11-12exp/draw: correct Makefile.Adam Langley1-1/+1
Thanks to Allister Macleod Fixes issue 112. R=rsc CC=golang-dev http://codereview.appspot.com/152102
2009-11-12fix a couple of typos.Rob Pike3-5/+37
add a mention of range to the tutorial. change tutorial's title. R=rsc CC=golang-dev http://codereview.appspot.com/152098
2009-11-12cc, ld: fix more gcc 4.3 -O2 compile bugsRuss Cox3-6/+5
same as http://codereview.appspot.com/152088 in more files. Fixes issue 83. R=r, r1 http://codereview.appspot.com/152091
2009-11-11 add cache flushing call after generating closure.Kai Backman2-0/+15
go/test: passes 88% (306/347) R=rsc http://codereview.appspot.com/152089
2009-11-11avoid seg fault when return type is unknownRuss Cox1-0/+5
Fixes issue 80. R=ken http://codereview.appspot.com/154079
2009-11-11gopack: work around gcc bug in hash functionRuss Cox1-3/+10
Fixes issue 48. (this time for sure!) R=r, r1 http://codereview.appspot.com/152088
2009-11-11fix typo in ByteSize exampleRob Pike1-6/+6
R=rsc, agl1 CC=golang-dev http://codereview.appspot.com/154076
2009-11-11Fix capitalisation of "Git".David Symonds4-20/+20
R=rsc http://codereview.appspot.com/154071 Committer: Russ Cox <rsc@golang.org>
2009-11-11vector: s/Element/interface{}/Robert Griesemer2-24/+19
Fixes issue 74. R=rsc http://codereview.appspot.com/154073
2009-11-11json: support \u escaping in stringsAdam Langley2-12/+28
Fixes issue 73. R=rsc CC=golang-dev http://codereview.appspot.com/154072
2009-11-11cgo: add more information about gcc output parsing failuresRuss Cox1-0/+4
R=r http://codereview.appspot.com/152084
2009-11-11fix BUFSIZ redeclaration warningsRuss Cox5-5/+5
R=r http://codereview.appspot.com/152085
2009-11-11fix TestRemoveAll again (tested as root this time).Russ Cox1-8/+7
Fixes issue 22. R=r http://codereview.appspot.com/154069
2009-11-11make.bash: detect and warn about SELinux policy that crashes us.Adam Langley1-0/+16
The default SELinux policy on Fedora 12 (at least) disallows stack pages to be +x. This causes all binaries written by 6g/6l to segfault immedately. The 'true' way to fix this issue is to mark binaries with the correct type. However, that assumes that 6l is going to detect SELinux, figure out the correct type for the current distribution and set the type (without libselinux). For now we'll warn users and point them towards the way to enable execstack for the whole system. http://code.google.com/p/go/issues/detail?id=47 R=rsc CC=golang-dev http://codereview.prom.corp.google.com/1026041
2009-11-11typoRuss Cox1-1/+1
Fixes issue 69. R=r http://codereview.appspot.com/152082
2009-11-11os test: do not use symlink > 255 bytes.Russ Cox1-1/+2
Fixes issue 62. R=r http://codereview.appspot.com/152080
2009-11-11cc: correct handling of allocn(0, 1, d)Russ Cox1-2/+1
Fixes issue 29. R=r http://codereview.appspot.com/152076
2009-11-11gotest: add LC_ALL=CRuss Cox1-0/+1
R=r http://codereview.appspot.com/154067
2009-11-11getc/ungetc in assemblers; BUFSIZ everywhere.Russ Cox5-0/+14
Fixes issue 67. R=r http://codereview.appspot.com/154068
2009-11-11point at how to get easy_install on Ubuntu.Russ Cox1-2/+12
Fixes issue 59. Add note about export. R=r http://codereview.appspot.com/152079