summaryrefslogtreecommitdiff
path: root/src/bytes
Commit message (Collapse)AuthorAgeFilesLines
* cmd/go: fix bytes and net the right wayRuss Cox2014-09-241-5/+0
| | | | | | | | | | | | | | | | | | | Not sure why they used empty.s and all these other packages were special cased in cmd/go instead. Add them to the list. This avoids problems with net .s files being compiled with gcc in cgo mode and gcc not supporting // comments on ARM. Not a problem with bytes, but be consistent. The last change fixed the ARM build but broke the Windows build. Maybe *this* will make everyone happy. Sigh. TBR=iant CC=golang-codereviews https://codereview.appspot.com/144530046
* bytes, strings: document that FieldsFunc f must not be statefulRuss Cox2014-09-181-0/+2
| | | | | | | | | Fixes issue 8738. LGTM=adg R=golang-codereviews, adg CC=golang-codereviews https://codereview.appspot.com/143260045
* build: move package sources from src/pkg to srcRuss Cox2014-09-0812-0/+3652
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.