aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-13release.2010-01-13: final checkin, release notesweekly.2010-01-13Russ Cox
R=r CC=golang-dev https://golang.org/cl/186147
2010-01-14clean up handling of numeric time zonesRob Pike
allow formatting of ruby-style times. Fixes #518. R=rsc CC=golang-dev https://golang.org/cl/186119
2010-01-13cgo: Only allow numeric / string / character type constants for referencesDevon H. O'Dell
to #defined things. Fixes #520. R=rsc, rsaarelm CC=golang-dev https://golang.org/cl/186138
2010-01-13contribute.html: suggest hg mail instead of hg uploadRuss Cox
R=r CC=golang-dev https://golang.org/cl/186145
2010-01-13create doc/talks/.Russ Cox
move talk-20091030 down. add talk given at Stanford 2010/01/12. add doc/go-logo-white.png. R=r CC=golang-dev https://golang.org/cl/186132
2010-01-13Distinguish between html generation and html quoting in godoc formatters.Robert Griesemer
Replacement for CL 184084; originally by Roger Peppe (rogpeppe@gmail.com). R=rsc CC=golang-dev, rog https://golang.org/cl/189059
2010-01-13vector: drop rule for bench, now in Make.pkgRuss Cox
R=gri CC=golang-dev https://golang.org/cl/186139
2010-01-13godoc: skip template wrapping for complete HTML filesRuss Cox
demo at http://wreck:8080/doc/ click on go_talk-20100112.html R=gri CC=golang-dev https://golang.org/cl/186137
2010-01-13Clarify when expressions are evaluated for a range clause.Ian Lance Taylor
R=gri, rsc CC=golang-dev https://golang.org/cl/189057
2010-01-13cgo: handle C99 bool typeDevon H. O'Dell
Fixes #307. R=rsc CC=golang-dev https://golang.org/cl/186073
2010-01-13codereview: split name list only on commas; some user names have spacesRuss Cox
R=r CC=golang-dev https://golang.org/cl/184069
2010-01-13runtime: reset DF flag after running external code on 386Russ Cox
R=r CC=golang-dev https://golang.org/cl/186108
2010-01-13don't worry about the number of spaces when parsing.Rob Pike
allow an underscore to stand for a space or digit if the following number is >=10. R=rsc CC=golang-dev https://golang.org/cl/186115
2010-01-13ignore $GOARCH inside the compiler and linker.Rob Pike
by definition, they know what they are building for. makes it easier to switch architectures when testing. % 6g x.go % 6l x.6 % 6.out "Wed Jan 13 10:57:46 EST 2010" % 8g x.go % 8l x.8 % 8.out "Wed Jan 13 10:57:46 EST 2010" % echo $GOARCH % R=rsc CC=golang-dev https://golang.org/cl/186116
2010-01-13 Fix minor issues with updating go-mode in an empty bufferKevin Ballard
Sometimes during editing, when the buffer is emptied (for example, as part of a call to M-x gofmt), an error is raised when remove-text-properties is called. Ensure that these calls use point-max instead of buffer-size to determine their end point. R=golang-dev, r CC=golang-dev https://golang.org/cl/189042
2010-01-13to improve the chances for compatibility, open a window of unused idsRob Pike
and specify a lowest id granted to users. R=rsc CC=golang-dev https://golang.org/cl/186081
2010-01-13fix typo found by kevin ballardRob Pike
R=gri CC=golang-dev https://golang.org/cl/186113
2010-01-12Light-weight scanner for general use.Robert Griesemer
Emphasis on minimal interface and fast scanning. Recognizes all Go literals by default. Easily configurable to recognize different whitespace characters and tokens. Provides detailed position information for each token. R=rsc, r CC=golang-dev https://golang.org/cl/181160
2010-01-12Add 'bench' target to makefiles.Adam Langley
R=rsc, agl, r CC=golang-dev https://golang.org/cl/188043
2010-01-12kate: Highlighting improvementsEvan Shaw
* Highlight built in functions * Add copy built in function * Handle multi-line strings R=rsc CC=golang-dev https://golang.org/cl/184059
2010-01-12runtime: fix bug in preemption checks; was causing "lock count" panicsRuss Cox
R=r CC=golang-dev https://golang.org/cl/186078
2010-01-12Fix bug that prevented the gofmt test script being run on moreRoger Peppe
than one explicitly named file. R=rsc, gri CC=golang-dev https://golang.org/cl/186095
2010-01-11math: special cases for Ceil, Exp, Floor, Log, Log10Charles L. Dorian
Added special case tests to all_test.go. Added tests to Floor, in-lined tests in Exp and Log. R=rsc CC=golang-dev https://golang.org/cl/184081
2010-01-11asn1: fix marshaling of structures with >1 elements.Adam Langley
Fixes #515. R=rsc CC=golang-dev https://golang.org/cl/184079
2010-01-11asn1: fix parsing of elements after a string in a structure.Adam Langley
Fixes #516. R=rsc CC=golang-dev, golang-dev https://golang.org/cl/184080
2010-01-11delete debugging printsRob Pike
R=rsc CC=golang-dev https://golang.org/cl/186079
2010-01-11delete debugging printsRob Pike
R=rsc CC=golang-dev https://golang.org/cl/186079
2010-01-11add pprof output format to prof.Rob Pike
amd64 linux only. R=rsc CC=golang-dev https://golang.org/cl/186077
2010-01-11math: special cases for FmodCharles L. Dorian
Added special case tests to all_test.go for Fmod. Fixed Fmod [hung for Fmod(+/-Inf, <finite>)]. Also added test for Ceil in all_test.go. R=rsc CC=golang-dev https://golang.org/cl/186076
2010-01-11doc/contribute.html: change copyright yearBill Neubauer
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/184055
2010-01-11 cgo: Make constants #define'd in C available to Go (as consts)Devon H. O'Dell
Fixes #435 R=rsc CC=golang-dev https://golang.org/cl/181161
2010-01-11gc: clean opnames.hYongjian Xu
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/181186
2010-01-11Remove -oldprinter flag from gofmt; all code isRobert Griesemer
now printed using the semicolon-free style. Removed NoSemis flag and mechanism dealing with optional semicolons from go/printer. Updated all go/printer output files using the semi-colon free style. Changes have no formatting impact on checked in go code under src and misc. R=rsc, r CC=golang-dev https://golang.org/cl/184068
2010-01-12Clean up and make consistent the comments in the math package.Rob Pike
R=rsc CC=golang-dev https://golang.org/cl/186042
2010-01-11math: fix pow10 comment, test portable SqrtRuss Cox
R=r CC= golang-dev, Charlie Dorian, golang-dev https://golang.org/cl/184058
2010-01-11Replicate signal names from syscall in os/signal.David Symonds
R=rsc CC=golang-dev https://golang.org/cl/183142
2010-01-11Partial work-around for gofmt bug.Robert Griesemer
Addresses some cases and respects position of closing parenthesis; but doesn't work yet in all cases. Heuristic; will need to be replaced by a real solution eventually. Does not cause existing code to be reformatted. R=r CC=golang-dev, rsc https://golang.org/cl/186043
2010-01-10math: Sqrt using 386 FPU.Charles L. Dorian
Note: sqrt_decl.go already in src/pkg/math/. R=rsc CC=golang-dev https://golang.org/cl/183155
2010-01-09runtime: check for preemption due to garbage collectionRuss Cox
in various already expensive routines. helps keep cpu utilization up when GOMAXPROCS > 1, but not a full solution. http://groups.google.com/group/golang-nuts/t/7a9535c4136d3e2 R=r CC=golang-dev https://golang.org/cl/184043
2010-01-09codereview: do not send mail when submitting for othersRuss Cox
rename original_author to copied_from so that it reads better when used as a condition. R=r CC=golang-dev https://golang.org/cl/185045
2010-01-08math: special cases for Atan, Asin and AcosCharles L. Dorian
Added tests for NaN and out-of-range values. Combined asin.go and atan.go into atan.go. R=rsc CC=golang-dev https://golang.org/cl/180065
2010-01-09fix typoRob Pike
R=gri, iant CC=golang-dev https://golang.org/cl/183160
2010-01-08gc: bug238Russ Cox
Fixes #471. R=ken2 CC=golang-dev https://golang.org/cl/181184
2010-01-07gc: bug219, bug239, bug240Russ Cox
Fixes #475. R=ken2 CC=golang-dev https://golang.org/cl/183157
2010-01-07gc: bug241Russ Cox
Fixes #495. R=ken2 CC=golang-dev https://golang.org/cl/183156
2010-01-08Rewrite tokenizer to clean up and fix a bug with spaces before delimited block.Rob Pike
Fixes #501. R=rsc CC=golang-dev https://golang.org/cl/181183
2010-01-07Add builder scripts.Adam Langley
These are the scripts behind godashboard.appspot.com. Nothing is particularly beautiful about it, but it does run. I still need to add support for per-builder keys and for running the benchmarks. R=rsc CC=golang-dev https://golang.org/cl/183153
2010-01-07add doc/devel/index.html, linked from nav barRuss Cox
R=r CC=golang-dev https://golang.org/cl/181156
2010-01-07codereview: repeated hg mail sends "PTAL"Russ Cox
also send out hg mail for TBR submits R=r CC=golang-dev https://golang.org/cl/183137
2010-01-07http: most of a URL shouldn't use URL-escapingRuss Cox
Fixes #502. R=r, hoisie CC=golang-dev https://golang.org/cl/181179