<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch weekly.2010-10-20</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=weekly.2010-10-20</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=weekly.2010-10-20'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2010-10-21T00:33:41Z</updated>
<entry>
<title>release.2010-10-20</title>
<updated>2010-10-21T00:33:41Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2010-10-21T00:33:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=ec2c9937f4515828875751e0ce3527b91df283b3'/>
<id>urn:sha1:ec2c9937f4515828875751e0ce3527b91df283b3</id>
<content type='text'>
R=r, rsc
CC=golang-dev
https://golang.org/cl/2629041
</content>
</entry>
<entry>
<title>goinstall: fix documentation typo</title>
<updated>2010-10-20T23:47:02Z</updated>
<author>
<name>Fazlul Shahriar</name>
<email>fshahriar@gmail.com</email>
</author>
<published>2010-10-20T23:47:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=3ee49850a08bed8346e319cf6230f1c13a5f526b'/>
<id>urn:sha1:3ee49850a08bed8346e319cf6230f1c13a5f526b</id>
<content type='text'>
R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/2585043
</content>
</entry>
<entry>
<title>build: add gobuilder and goplay to run.bash</title>
<updated>2010-10-20T23:46:10Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2010-10-20T23:46:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=06492d47cbc3f4fe503f80c8cd7a97772566324a'/>
<id>urn:sha1:06492d47cbc3f4fe503f80c8cd7a97772566324a</id>
<content type='text'>
gobuilder: fix build to work with new log package

R=rsc
CC=golang-dev
https://golang.org/cl/2592041
</content>
</entry>
<entry>
<title>os: correct Stat S_ISDIR on Windows</title>
<updated>2010-10-20T23:29:45Z</updated>
<author>
<name>Yasuhiro Matsumoto</name>
<email>mattn.jp@gmail.com</email>
</author>
<published>2010-10-20T23:29:45Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1c9dfb7647a6802c73a7aafa6f45f2e6249f5ab6'/>
<id>urn:sha1:1c9dfb7647a6802c73a7aafa6f45f2e6249f5ab6</id>
<content type='text'>
R=rsc, brainman
CC=golang-dev
https://golang.org/cl/2598041
</content>
</entry>
<entry>
<title>5l: two stack split bugs in one day</title>
<updated>2010-10-20T22:11:53Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-10-20T22:11:53Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=231fcea7e60ebf76d01b6ebd6534558ac079fe3c'/>
<id>urn:sha1:231fcea7e60ebf76d01b6ebd6534558ac079fe3c</id>
<content type='text'>
An ARM expert could probably phrase the
comparison in fewer instructions, but this works.

R=ken2
CC=golang-dev
https://golang.org/cl/2620041
</content>
</entry>
<entry>
<title>encoding/hex: fix typo</title>
<updated>2010-10-20T20:38:57Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-10-20T20:38:57Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=10b53867e85dd2c43b2bb7ee7eb892019b2c08cf'/>
<id>urn:sha1:10b53867e85dd2c43b2bb7ee7eb892019b2c08cf</id>
<content type='text'>
Thanks to avadh4all for spotting it.

Fixes #1214.

R=r, r2
CC=golang-dev
https://golang.org/cl/2616041
</content>
</entry>
<entry>
<title>gc: select receive with implicit conversion</title>
<updated>2010-10-20T20:38:25Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-10-20T20:38:25Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=0db8d3df4c87fe2a06d53cea04d52c0aab2df14a'/>
<id>urn:sha1:0db8d3df4c87fe2a06d53cea04d52c0aab2df14a</id>
<content type='text'>
Fixes #1172.

R=ken2
CC=golang-dev
https://golang.org/cl/2615041
</content>
</entry>
<entry>
<title>code gen error for *(complex)++</title>
<updated>2010-10-20T20:18:00Z</updated>
<author>
<name>Ken Thompson</name>
<email>ken@golang.org</email>
</author>
<published>2010-10-20T20:18:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=6096fc83cd117b0690c3b3017778757e4389982f'/>
<id>urn:sha1:6096fc83cd117b0690c3b3017778757e4389982f</id>
<content type='text'>
includes array[i]++ and slice[i]++

R=rsc
CC=golang-dev
https://golang.org/cl/2614041
</content>
</entry>
<entry>
<title>runtime: don't let select split stack</title>
<updated>2010-10-20T19:54:17Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-10-20T19:54:17Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=6a3b29895f72b62fd7c49d1d808ed1a8ab49fdc5'/>
<id>urn:sha1:6a3b29895f72b62fd7c49d1d808ed1a8ab49fdc5</id>
<content type='text'>
Fixes #1209.

R=ken2
CC=golang-dev
https://golang.org/cl/2612041
</content>
</entry>
<entry>
<title>arm: fix typo in softfloat</title>
<updated>2010-10-20T19:35:37Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-10-20T19:35:37Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=c026c91b5c628a3bdcda85e7238e165a4f2b2780'/>
<id>urn:sha1:c026c91b5c628a3bdcda85e7238e165a4f2b2780</id>
<content type='text'>
R=kaib
CC=golang-dev
https://golang.org/cl/2608041
</content>
</entry>
</feed>
