<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch weekly.2010-12-08</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=weekly.2010-12-08</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=weekly.2010-12-08'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2010-12-08T03:24:35Z</updated>
<entry>
<title>release.2010-12-08</title>
<updated>2010-12-08T03:24:35Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2010-12-08T03:24:35Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=f5ec1876c24c68b7418f5fd1415fe190a7ea27e9'/>
<id>urn:sha1:f5ec1876c24c68b7418f5fd1415fe190a7ea27e9</id>
<content type='text'>
R=rsc
CC=golang-dev
https://golang.org/cl/3463043
</content>
</entry>
<entry>
<title>runtime: fix windows build</title>
<updated>2010-12-08T01:52:36Z</updated>
<author>
<name>Alex Brainman</name>
<email>alex.brainman@gmail.com</email>
</author>
<published>2010-12-08T01:52:36Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=60c91bbf4ca1d57fba883ba488b7bf31888a02ea'/>
<id>urn:sha1:60c91bbf4ca1d57fba883ba488b7bf31888a02ea</id>
<content type='text'>
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/3419043
</content>
</entry>
<entry>
<title>runtime: add Goroutines</title>
<updated>2010-12-07T23:06:31Z</updated>
<author>
<name>Keith Rarick</name>
<email>kr@xph.us</email>
</author>
<published>2010-12-07T23:06:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=51a218385150c44c60d3d61c7a6493a9ca342d29'/>
<id>urn:sha1:51a218385150c44c60d3d61c7a6493a9ca342d29</id>
<content type='text'>
R=rsc
CC=golang-dev
https://golang.org/cl/3508041
</content>
</entry>
<entry>
<title>ld: fix dwarf decoding of 64-bit reflect values</title>
<updated>2010-12-07T22:20:52Z</updated>
<author>
<name>Eoghan Sherry</name>
<email>ejsherry@gmail.com</email>
</author>
<published>2010-12-07T22:20:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=63544c47547fd3246e7509e5e13fe90a9d5e3f20'/>
<id>urn:sha1:63544c47547fd3246e7509e5e13fe90a9d5e3f20</id>
<content type='text'>
R=rsc
CC=golang-dev
https://golang.org/cl/3002041
</content>
</entry>
<entry>
<title>runtime: debugging help on 386</title>
<updated>2010-12-07T22:19:36Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-12-07T22:19:36Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=7e14bd81f42ddab2dda331a3395ec36b3a299837'/>
<id>urn:sha1:7e14bd81f42ddab2dda331a3395ec36b3a299837</id>
<content type='text'>
R=r
CC=golang-dev
https://golang.org/cl/3502041
</content>
</entry>
<entry>
<title>html: handle unexpected EOF during parsing.</title>
<updated>2010-12-07T21:59:20Z</updated>
<author>
<name>Nigel Tao</name>
<email>nigeltao@golang.org</email>
</author>
<published>2010-12-07T21:59:20Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=49014c5b12bd00817203c5ae5dbd4ec1c8f6d157'/>
<id>urn:sha1:49014c5b12bd00817203c5ae5dbd4ec1c8f6d157</id>
<content type='text'>
This lets us parse HTML like "&lt;html&gt;foo".

R=gri
CC=golang-dev
https://golang.org/cl/3460043
</content>
</entry>
<entry>
<title>cc: allow $ as letter in pragma arguments</title>
<updated>2010-12-07T21:45:06Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-12-07T21:45:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=8d50557979b30c277c7c846bb61f6d1a0466db4a'/>
<id>urn:sha1:8d50557979b30c277c7c846bb61f6d1a0466db4a</id>
<content type='text'>
(Needed for Mac OS X symbol names.)

R=ken2
CC=golang-dev
https://golang.org/cl/3499041
</content>
</entry>
<entry>
<title>go/parser: Better comment for ParseFile.</title>
<updated>2010-12-07T21:44:01Z</updated>
<author>
<name>Robert Griesemer</name>
<email>gri@golang.org</email>
</author>
<published>2010-12-07T21:44:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=ce89f213a822b7a6277282ae2feb9ce9dda96a1b'/>
<id>urn:sha1:ce89f213a822b7a6277282ae2feb9ce9dda96a1b</id>
<content type='text'>
The name ParseFile was kept as it indicates that
this function parses a Go 'SourceFile' per the
Go spec. Similarly, the other functions (ParseExpr,
ParseStmtList, ParseDeclList) parse the corresponding
constructs as defined in the Go spec.

Fixes #1311.

R=r, rsc
CC=golang-dev
https://golang.org/cl/3453042
</content>
</entry>
<entry>
<title>throughout: fix broken calls to Printf etc.</title>
<updated>2010-12-07T21:42:54Z</updated>
<author>
<name>Rob Pike</name>
<email>r@golang.org</email>
</author>
<published>2010-12-07T21:42:54Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1ce6245d6cc313daba1a4d7b5b349328e18bba6b'/>
<id>urn:sha1:1ce6245d6cc313daba1a4d7b5b349328e18bba6b</id>
<content type='text'>
I have written a tool to verify Printf calls, and although it's not
ready to be reviewed yet it's already uncovered a spate of problems
in the repository.  I'm sending this CL to break the changes into
pieces; as the tool improves it will find more, I'm sure.

R=rsc
CC=golang-dev
https://golang.org/cl/3427043
</content>
</entry>
<entry>
<title>doc: add link to WindowsPort page from install.html</title>
<updated>2010-12-07T21:31:26Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2010-12-07T21:31:26Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=ab7884da7eaea4ced7414c710aa0a5622e8eabd6'/>
<id>urn:sha1:ab7884da7eaea4ced7414c710aa0a5622e8eabd6</id>
<content type='text'>
R=r
CC=golang-dev
https://golang.org/cl/3442042
</content>
</entry>
</feed>
