- 04 Feb, 2010 17 commits
-
-
Christopher Wedgwood authored
R=rsc CC=golang-dev https://golang.org/cl/202043
-
Christopher Wedgwood authored
Cosmetic fix. The FreeBSD system call only takes two arguments. http://fxr.watson.org/fxr/source/kern/kern_sig.c?im=bigexcerpts#L1678 R=dho, rsc CC=golang-dev https://golang.org/cl/202051
-
Russ Cox authored
R=adg, adg1 CC=golang-dev https://golang.org/cl/202044
-
Andrew Gerrand authored
Allows binary to run on some Linux system. Fix for issue 365. R=rsc CC=golang-dev https://golang.org/cl/199096
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/201041
-
Nigel Tao authored
This lets you draw text (i.e. with mask = a font image) with sources that aren't uniform colors. R=r, rsc CC=golang-dev https://golang.org/cl/193067
-
Russ Cox authored
R=r, cw CC=golang-dev https://golang.org/cl/201043
-
Nigel Tao authored
R=r, rsc CC=golang-dev https://golang.org/cl/198066
-
Petar Maymounkov authored
R=rsc CC=golang-dev https://golang.org/cl/196079
-
Christopher Wedgwood authored
R=rsc CC=golang-dev https://golang.org/cl/199082
-
Kai Backman authored
the location. remove last remnants of broken -l flag. R=rsc CC=golang-dev https://golang.org/cl/201042
-
Russ Cox authored
R=kaib CC=golang-dev https://golang.org/cl/199094
-
Rob Pike authored
Make sure to print a time zone when formatting even if none is defined. Add a comment introducing lookupTimezone (not lookupTimeZone). Fixes isse 577. R=rsc CC=golang-dev https://golang.org/cl/196090
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/198102
-
Russ Cox authored
TBR=r CC=golang-dev https://golang.org/cl/199091
-
Russ Cox authored
R=r, cw CC=golang-dev https://golang.org/cl/198085
-
Russ Cox authored
Fixes #585. R=r CC=golang-dev https://golang.org/cl/195075
-
- 03 Feb, 2010 3 commits
-
-
Andrey Mirtchovski authored
R=rsc CC=golang-dev https://golang.org/cl/198084
-
Russ Cox authored
TBR=r CC=golang-dev https://golang.org/cl/198081
-
Kai Backman authored
R=rsc, r CC=golang-dev https://golang.org/cl/198074
-
- 02 Feb, 2010 19 commits
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/199066
-
Russ Cox authored
Fixes #287. R=ken2 CC=golang-dev https://golang.org/cl/199057
-
Nigel Tao authored
R=r, rsc CC=golang-dev https://golang.org/cl/199052
-
Ian Lance Taylor authored
bug249.go:10:5: error: incompatible type in initialization bug249.go:26:5: error: incompatible type in initialization R=rsc CC=golang-dev https://golang.org/cl/198058
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/198057
-
Russ Cox authored
R=r CC=Charlie Dorian, golang-dev https://golang.org/cl/199054
-
Charles L. Dorian authored
Added special cases to comments for asin.go and fabs.go. Added Trunc() to floor.go and floor_386.s. Fixed formatting error in hypot_386.s Added new functions Acosh, Asinh, Atanh, Copysign, Erf, Erfc, Expm1, and Log1p. Added 386 FPU version of Fmod. Added tests, benchmarks, and precision to expected results in all_test.go. Edited makefile so it all compiles. R=rsc CC=golang-dev https://golang.org/cl/195052
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/198053
-
Rob Pike authored
R=rsc, gri CC=golang-dev https://golang.org/cl/198050
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/198048
-
Russ Cox authored
* renamed channels to say what gets sent * use channel closed status instead of racy check of boolean R=nigeltao_golang CC=golang-dev https://golang.org/cl/196065
-
Rob Pike authored
Fixes #574. R=rsc CC=golang-dev https://golang.org/cl/196056
-
Ian Lance Taylor authored
import1.go:12:8: error: redefinition of ‘bufio’ import1.go:11:8: note: previous definition of ‘bufio’ was here import1.go:16:2: error: redefinition of ‘fmt’ import1.go:15:2: note: previous definition of ‘fmt’ was here import1.go:11:8: error: imported and not used: bufio R=rsc CC=golang-dev https://golang.org/cl/194165
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/199047
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/198046
-
Ian Lance Taylor authored
I have to admit that "cannot use type p.T as type p.T" is a bit weak. 8g gives a similar error ("cannot use v1 (type p.T) as type p.T in assignment"). bug3.go:37:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:38:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:43:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:44:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:49:5: error: incompatible types in assignment (cannot use type p.T as type p.T) bug3.go:50:5: error: incompatible types in assignment (cannot use type p.T as type p.T) bug3.go:55:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:56:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:57:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:58:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:59:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:60:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:61:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:62:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) R=rsc CC=golang-dev https://golang.org/cl/199044
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/199046
-
Robert Griesemer authored
Fixes #571. R=rsc CC=golang-dev https://golang.org/cl/198045
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/199045
-
- 01 Feb, 2010 1 commit
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/197043
-