- 01 Dec, 2009 11 commits
-
-
Charles L. Dorian authored
Also fixes issue 310 comment 5 error. Fixes #310. R=rsc https://golang.org/cl/163042
-
Rob Pike authored
1) need to send slice and array types (was only sending element types) 2) compatibleType needs to use decoder's type map R=rsc CC=golang-dev https://golang.org/cl/164062
-
Robert Griesemer authored
R=rsc https://golang.org/cl/164059
-
Russ Cox authored
R=r https://golang.org/cl/164060
-
Sven Almgren authored
R=rsc https://golang.org/cl/163053
-
Rob Pike authored
R=rsc https://golang.org/cl/161050
-
Fazlul Shahriar authored
Opening /dev/stdin can sometimes fail. For example, in the acme editor, executing "Edit ,|gofmt" fails with: open /dev/stdin: no such device or address Executing "Edit ,|ls -l /dev/stdin /proc/self/fd/0" gives: lrwxrwxrwx 1 root root 15 2009-09-07 02:17 /dev/stdin -> /proc/self/fd/0 lrwx------ 1 fhs users 64 2009-11-26 22:05 /proc/self/fd/0 -> socket:[5528230] (This is my first change, and I've signed the individual contributor license agreement.) R=rsc, gri CC=golang-dev https://golang.org/cl/162041
-
Robert Griesemer authored
- simplified dealing with parse errors: no need to intersperse them in the source - improve visibility of highlighted identifiers by showing them in bold R=rsc https://golang.org/cl/163051
-
Fazlul Shahriar authored
R=golang-dev, rsc https://golang.org/cl/164052
-
Anthony Starks authored
R=rsc CC=agl1 https://golang.org/cl/154123
-
- 30 Nov, 2009 21 commits
-
-
Roger Peppe authored
unnamed, not require -n, in line with other entries. R=rsc CC=r https://golang.org/cl/162061
-
Sergey 'SnakE' Gromov authored
R=rsc CC=golang-dev https://golang.org/cl/164047
-
Adrian O'Grady authored
R=rsc https://golang.org/cl/157153
-
Tor Andersson authored
The python script needs a checkout of xcb/proto to generate an xproto.go file, which together with xgb.go provide functions to access all of the core X11 protocol requests. I have included the generated file. Extensions and authentication methods are not implemented. R=r, rsc, nigeltao_golang https://golang.org/cl/162053
-
Sergey 'SnakE' Gromov authored
This patch adds an ability to convert JSON-encoded data into a hierarchy of Go's native data types. R=rsc CC=golang-dev https://golang.org/cl/161060
-
Robert Griesemer authored
Fixes #358. R=rsc CC=r https://golang.org/cl/164043
-
Péter Szabó authored
Also made sync.xadd public to help testing sync.RWMutex. Also added unit tests for sync.RWMutex. R=rsc https://golang.org/cl/162044
-
Jonathan Wills authored
R=rsc https://golang.org/cl/162046
-
Christopher Wedgwood authored
R=r, rsc CC=agl1 https://golang.org/cl/161070
-
Andrew Skiba authored
Fixes #272. R=rsc https://golang.org/cl/161061
-
Christopher Wedgwood authored
R=r, rsc https://golang.org/cl/161058
-
Christopher Wedgwood authored
(compile tested only) R=r, rsc https://golang.org/cl/161069
-
Hector Chu authored
R=rsc https://golang.org/cl/157159
-
Russ Cox authored
R=gri CC=r https://golang.org/cl/163044
-
Russ Cox authored
* diagnose template not created with New (current code just crashes) * write []byte uninterpreted (current code writes fmt format: "[65 65 65 65]") R=r CC=golang-dev https://golang.org/cl/161075
-
Russ Cox authored
between hg clpatch and hg submit. R=r https://golang.org/cl/162059
-
Russ Cox authored
R=r, SnakE CC=fhs, pts https://golang.org/cl/162054
-
Fumitoshi Ukai authored
R=rsc, sergio https://golang.org/cl/162058
-
Russ Cox authored
Fixes #115. R=r, ukai, sergio https://golang.org/cl/162057
-
Sergio Luis O. B. Correia authored
this is the exact same thing issue #115 is about. fix makefiles to use relative path to work in the case we have whitespaces as part of GOROOT. R=rsc https://golang.org/cl/162055
-
Eden Li authored
Ideally, the C name would come from the typedef or pointer that references the Size<0 type, but we can't easily generate this without performing a look-ahead to see if any referencing type will become opaque. Fixes #334. Fixes #281. R=rsc https://golang.org/cl/161056
-
- 29 Nov, 2009 4 commits
-
-
Fumitoshi Ukai authored
R=r, rsc https://golang.org/cl/156071
-
Austin Clements authored
Fixes #290. R=rsc https://golang.org/cl/160070
-
Fumitoshi Ukai authored
R=r, rsc https://golang.org/cl/156070
-
Robert Griesemer authored
Fixes #352. R=rsc https://golang.org/cl/161073
-
- 25 Nov, 2009 4 commits
-
-
Rob Pike authored
utf8_test.BenchmarkRuneCountTenASCIIChars 20000000 108 ns/op utf8_test.BenchmarkRuneCountTenJapaneseChars 10000000 199 ns/op utf8_test.BenchmarkEncodeASCIIRune 500000000 6 ns/op utf8_test.BenchmarkEncodeJapaneseRune 100000000 10 ns/op utf8_test.BenchmarkDecodeASCIIRune 100000000 13 ns/op utf8_test.BenchmarkDecodeJapaneseRune 100000000 21 ns/op R=gri CC=golang-dev https://golang.org/cl/161049
-
Rob Pike authored
R=gri CC=golang-dev https://golang.org/cl/160069
-
Nigel Tao authored
This provides an experimental X11 backend for the exp/draw interface. It does not aim to provide a complete implementation of the X11 client protocol. This works for me (Ubuntu Hardy 8.04, GOARCH=386). Your mileage my vary. R=r, rsc, r1 CC=golang-dev https://golang.org/cl/156109
-
Rob Pike authored
before this change, if pkg/Make.deps is missing or broken, clean.bash fails and the build dies but not until much later. add freebsd to error message about valid values of $GOOS TODO: would be nice if this process exited when an error occurred. subshells make it hard R=rsc CC=golang-dev https://golang.org/cl/160065
-