aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-08[release-branch.r60] doc: release.r60release.r60Andrew Gerrand
««« CL 4981047 / c0fea223bc90 doc: release.r60 R=dsymonds, r, rsc CC=golang-dev https://golang.org/cl/4981047 »»» R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4961072
2011-09-08[release-branch.r60] template: indirect or dereference function arguments if ↵Andrew Gerrand
necessary to match the type of the formal. ««« CL 4967056 / a163a464ef59 template: indirect or dereference function arguments if necessary to match the type of the formal. Fixes #2235 R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4967056 »»» R=dsymonds CC=golang-dev https://golang.org/cl/4992043
2011-09-08[release-branch.r60] template: fix deadlock.Andrew Gerrand
««« CL 4963054 / c581abafc917 template: fix deadlock. No need for lexInsideAction to loop. Fixes #2217. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4963054 »»» R=dsymonds CC=golang-dev https://golang.org/cl/4974068
2011-09-08[release-branch.r60] template: range over channelAndrew Gerrand
««« CL 4951046 / 379452c085ab template: range over channel R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4951046 »»» R=dsymonds CC=golang-dev https://golang.org/cl/4983052
2011-09-08[release-branch.r60] template: Grammar fix for template documentation.Andrew Gerrand
««« CL 4944043 / 6577cd4b870f template: Grammar fix for template documentation. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4944043 »»» R=dsymonds CC=golang-dev https://golang.org/cl/4978058
2011-09-08[release-branch.r60] exp/template: remove else and end nodes from public view.Andrew Gerrand
««« CL 4905052 / 508513bbf607 exp/template: remove else and end nodes from public view. They are used internally and do not appear in the final parse tree. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4905052 »»» R=dsymonds CC=golang-dev https://golang.org/cl/4951069
2011-09-08[release-branch.r60] gc: fix pc/line tableAndrew Gerrand
««« CL 4938042 / 5671737303a0 gc: fix pc/line table When a line directive was encountered we would push a new 'z' entry into the history to indicate the start of new file attributation, and a 'Z' entry to change line numbering. However we didn't pop the 'z' entry, so we were actually corrupting the history stack. The most obvious occurance of this was in the code that build the symbol tables for the DWARF information - where an internal stack in the linker would overflow when more than a few line directives were encountered in a single stack (Issue 1878). So now we pop the 'z' entry when we encounter the end of the file that the directive was in, which maintains the history stack integrity. Also, although new 'z' entries for new files had relative paths expanded, the same was not done for line directives. Now we do it for line directives also - so that the now correct DWARF information has the full path available. Fixes #1878. R=rsc CC=golang-dev https://golang.org/cl/4938042 »»» R=golang-dev CC=golang-dev https://golang.org/cl/4973069
2011-09-08[release-branch.r60] gofix: do not convert url in field namesAndrew Gerrand
««« CL 4972052 / 0f7a647510f9 gofix: do not convert url in field names There's some ambiguity in the U{url: url} case as it could be both a map or a struct literal, but given context it's more likely a struct, so U{url: url_} rather than U{url_: url_}. At least that was the case for me. R=golang-dev, rsc, adg CC=golang-dev https://golang.org/cl/4972052 »»» R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4962058
2011-09-08[release-branch.r60] gofix: forgot to rename the URL typeAndrew Gerrand
««« CL 4952041 / c51a2f3f897a gofix: forgot to rename the URL type Fixes #2182 R=golang-dev, gri CC=golang-dev https://golang.org/cl/4952041 »»» R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4951068
2011-09-08[release-branch.r60] gofix: osopen: fixed=true when changing O_CREATAndrew Gerrand
««« CL 4921047 / 15cefddbe963 gofix: osopen: fixed=true when changing O_CREAT R=rsc, r CC=golang-dev https://golang.org/cl/4921047 »»» R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4961071
2011-09-08[release-branch.r60] goinstall: select the tag that is closest to ↵Andrew Gerrand
runtime.Version ««« CL 4873057 / db63f3a1f992 goinstall: select the tag that is closest to runtime.Version release.r50 looks for newest tag <= go.r50 weekly.2010-10-10 looks for newest tag <= go.2010-10-10 Implements behavior for hg, git, and bzr. R=dsymonds, rsc, n13m3y3r CC=golang-dev https://golang.org/cl/4873057 »»» R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4974067
2011-09-08[release-branch.r60] goinstall: report lack of $GOPATH on errorsAndrew Gerrand
««« CL 4929047 / 7bfbbfb1ad42 goinstall: report lack of $GOPATH on errors Fixes #2175. R=alex.brainman, rsc, gustavo, adg CC=golang-dev https://golang.org/cl/4929047 »»» R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4964068
2011-09-08[release-branch.r60] goinstall: error out with paths that end with '/'Andrew Gerrand
««« CL 4807048 / ae3b2b092cf7 goinstall: error out with paths that end with '/' R=adg, rsc, tarmigan+golang CC=golang-dev https://golang.org/cl/4807048 »»» R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4968077
2011-09-08create release-branch.r60Andrew Gerrand
2011-08-18weekly.2011-08-17weekly.2011-08-17Andrew Gerrand
R=golang-dev, r CC=golang-dev https://golang.org/cl/4914042
2011-08-18gofix: walk names in ValueSpecsRob Pike
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4887048
2011-08-18test/chan/select5.go: change "with" to "if" in templateaRob Pike
I converted this program yesterday and the output is the same as it used to be, ignoring space, but the result is not the best expression of the algorithm. The old {.section Maybe} pieces are now {{with .Maybe}}, as a direct translation, but I they should be {{if .Maybe}} as the output is just a bool and there is no cascading. I have verified that the output of the program is unaffected. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4889053
2011-08-18misc/vim: command complete using autoload helper function.Yasuhiro Matsumoto
R=golang-dev, dsymonds, jnwhiteh, n13m3y3r, gustavo CC=golang-dev https://golang.org/cl/4837051
2011-08-18http: remove a TODO due to new behavior of nil mapsRob Pike
R=golang-dev, dsymonds, adg CC=golang-dev https://golang.org/cl/4907049
2011-08-18exp/template/html: defines a parse context for a subset of HTML.Mike Samuel
This defines just enough context to distinguish HTML URI attributes from parsed character data. It does not affect any public module API as I thought I would get early comment on style for defining enumerations and tables. R=rsc, r, nigeltao, r CC=golang-dev https://golang.org/cl/4906043
2011-08-18doc/codelab: use new template packageAndrew Gerrand
R=golang-dev, r CC=golang-dev https://golang.org/cl/4897048
2011-08-17godoc: template cleanupRobert Griesemer
Use naming convention for template variables to indicate "escaped-ness" for easier reviewing. (per suggestion from bradfitz) R=bradfitz CC=golang-dev https://golang.org/cl/4914041
2011-08-17test: new nil semanticsRuss Cox
R=gri CC=golang-dev https://golang.org/cl/4644052
2011-08-17gc: implement nil chan supportRuss Cox
The spec has defined nil chans this way for months. I'm behind. R=ken2 CC=golang-dev https://golang.org/cl/4897050
2011-08-17gc: implement nil map supportRuss Cox
The spec has defined nil maps this way for months. I'm behind. R=ken2 CC=golang-dev https://golang.org/cl/4901052
2011-08-17gc: fix mkbuiltinRuss Cox
Broken by Plan 9 changes. R=ken2 CC=golang-dev https://golang.org/cl/4896050
2011-08-17go/parser: disallow for statements w/ illegal range clausesRobert Griesemer
R=rsc CC=golang-dev https://golang.org/cl/4908047
2011-08-17net: Plan 9 supportFazlul Shahriar
All tests enabled by default passes except those in timeout_test.go. For TestLookupPort, add an entry for "bootps" in /lib/ndb/common (Plan 9 calls it "bootp"). I've sent out a patch to fix this. R=paulzhol, rsc, mikioh.mikioh CC=ality, golang-dev https://golang.org/cl/4779041
2011-08-17go/parser: do not accept type literals where not permitted in generalRobert Griesemer
- Resolves a long-standing TODO. - Replacement for CL 4908042 by befelemepeseveze@gmail.com Fixes #2155. R=rsc CC=golang-dev https://golang.org/cl/4904048
2011-08-17xml: escape string chardata in xml.MarshalKyle Lemons
Fixes #2150. R=golang-dev, nigeltao, rsc CC=golang-dev https://golang.org/cl/4890042
2011-08-17asn1: add support for unmarshalling structs with int32 membersDave Cheney
Also improve error message for unsupported integer types R=agl, rsc CC=golang-dev https://golang.org/cl/4873049
2011-08-17exp/norm: implementation of decomposition and composing functionality.Marcel van Lohuizen
forminfo.go: - Wrappers for table data. - Per Form dispatch table. composition.go: - reorderBuffer type. Implements decomposition, reordering, and composition. - Note: decompose and decomposeString fields in formInfo could be replaced by a pointer to the trie for the respective form. The proposed design makes testing easier, though. normalization.go: - Temporarily added panic("not implemented") methods to make the tests run. These will be removed again with the next CL, which will introduce the implementation. R=r, rogpeppe, mpvl, rsc CC=golang-dev https://golang.org/cl/4875043
2011-08-17test/chan/select5.go: update to new templatesRob Pike
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4911041
2011-08-17exp/template/html: rework Reverse(*Template) to do naive autoescapingMike Samuel
Replaces the toy func Reverse(*Template) with one that implements naive autoescaping. Now Escape(*Template) walks a template parse tree to find all template actions and adds the |html command to them if it is not already present. R=golang-dev, r CC=golang-dev https://golang.org/cl/4867049
2011-08-17doc/codewalk: new Markov chain codewalkAndrew Gerrand
R=gri, r, rsc CC=golang-dev https://golang.org/cl/4891041
2011-08-17template: move exp/template into template.Rob Pike
(Leave exp/template/html where it is for now.) R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4899048
2011-08-17template: delete old template code.Rob Pike
It's already in old/template; make that build. Update a couple of references to point to the old template. They can be updated later. Update goplay to use exp/template. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4902046
2011-08-17misc: fix a couple of template uses preparatory to the big switch.Rob Pike
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4876057
2011-08-17url: new packageRob Pike
This is just moving the URL code from package http into its own package, which has been planned for a while. Besides clarity, this also breaks a nascent dependency cycle the new template package was about to introduce. Add a gofix module, url, and use it to generate changes outside http and url. Sadness about the churn, gladness about some of the naming improvements. R=dsymonds, bradfitz, rsc, gustavo, r CC=golang-dev https://golang.org/cl/4893043
2011-08-16net: Added function SetTimeout() to interface Listener.Aleksandar Dezelin
Fixes #2148. R=golang-dev, bradfitz, rsc CC=golang-dev https://golang.org/cl/4905042
2011-08-16go/parser: use correct precedence when parsing range clausesRobert Griesemer
Fixes #2156. R=rsc CC=golang-dev https://golang.org/cl/4899046
2011-08-16A+C: Aleksandar Dezelin (individual CLA)Russ Cox
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4901047
2011-08-16net: add multicast stubs for openbsdJoel Sing
Add multicast stubs and sync with recent changes. R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/4838058
2011-08-16net, syscall: move multicast address handlingJoel Sing
Multicast address handling is not consistent across all BSDs. Move the multicast address handling code into OS dependent files. This will be needed for OpenBSD support. R=mikioh.mikioh, golang-dev CC=golang-dev https://golang.org/cl/4809074
2011-08-16net: return correct local address for an accepted TCP connectionMikio Hara
Fixes #2127. R=rsc CC=golang-dev https://golang.org/cl/4873043
2011-08-16runtime: fix GC bitmap corruptionDmitriy Vyukov
The corruption can occur when GOMAXPROCS is changed from >1 to 1, since GOMAXPROCS=1 does not imply there is only 1 goroutine running, other goroutines can still be not parked after the change. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4873050
2011-08-16cgo: omit duplicate symbols in writeDefsJulian Phillips
When the C API being used includes multiple names for the same underlying symbol (e.g. multiple #define's for the same variable), then cgo will generate the same placeholder variables for each name. This then prevents the code from compiling due to multiple declarations of the same variable - so change cgo to only create one instance of the variable for the underlying symbol. R=rsc CC=golang-dev https://golang.org/cl/4826055
2011-08-165l, 6l, 8l: add varargck for %ZLucio De Re
R=golang-dev CC=golang-dev, rsc https://golang.org/cl/4837044
2011-08-165c, 6c, 6l: fix Plan 9 build warningsLucio De Re
src/cmd/5c/reg.c: . Added USED() attribute. src/cmd/6c/cgen.c: . Revised code around "REGARG" to resemble use in "8c" and consequently remove a warning. src/cmd/6l/asm.c: . Added USED() attributes. . Removed an unnecessary assignment. R=golang-dev CC=golang-dev, rsc https://golang.org/cl/4836045
2011-08-16ld: make addaddrplus4 staticLucio De Re
R=golang-dev CC=golang-dev, rsc https://golang.org/cl/4835043