1. 11 Feb, 2014 4 commits
  2. 10 Feb, 2014 10 commits
  3. 09 Feb, 2014 5 commits
  4. 07 Feb, 2014 11 commits
  5. 06 Feb, 2014 5 commits
    • Jakub Ryszard Czarnowicz's avatar
      net/mail: correctly handle whitespaces when formatting an email address · d3b9567a
      Jakub Ryszard Czarnowicz authored
      Whitespace characters are allowed in quoted-string according to RFC 5322 without
      being "Q"-encoding. Address.String() already always formats the name portion in
      quoted string, so whitespace characters should be allowed in there.
      
      Fixes #6641.
      
      LGTM=dave, dsymonds
      R=golang-codereviews, gobot, dsymonds, dave
      CC=golang-codereviews
      https://golang.org/cl/55770043
      d3b9567a
    • Shenghou Ma's avatar
      cmd/go: do not create world-writable files. · c66956cd
      Shenghou Ma authored
      Fixes #7240.
      
      LGTM=tommi.virtanen, bradfitz
      R=golang-codereviews, tommi.virtanen, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/60480045
      c66956cd
    • Richard Musiol's avatar
      math/big: replace goto with for loop · 547a82c3
      Richard Musiol authored
      I just added support for goto statements to my GopherJS project and now I am trying to get rid of my patches. These occurrences of goto however are a bit problematic:
      GopherJS has to emulate gotos, so there is some performance drawback when doing so. In this case the drawback is major, since this is a core function of math/big which is called quite often. Additionally I can't see any reason here why the implementation with gotos should be preferred over my proposal.
      That's why I would kindly ask to include this patch, even though it is functional equivalent to the existing code.
      
      LGTM=bradfitz
      R=golang-codereviews, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/55470046
      547a82c3
    • Shenghou Ma's avatar
      doc/install.html: get rid of explicit version number in docs. · 2b6eb111
      Shenghou Ma authored
      So that we don't need to update the file each time a new version is released.
      
      LGTM=dave, r, adg
      R=golang-codereviews, dave, josharian, gobot, adg, r
      CC=golang-codereviews
      https://golang.org/cl/48730043
      2b6eb111
    • Elias Naur's avatar
      cmd/go, cmd/cgo, make.bash: cross compiling with cgo enabled · 2dc759d7
      Elias Naur authored
      Introduce two new environment variables, CC_FOR_TARGET and CXX_FOR_TARGET.
      CC_FOR_TARGET defaults to CC and is used when compiling for GOARCH, while
      CC remains for compiling for GOHOSTARCH.
      CXX_FOR_TARGET defaults to CXX and is used when compiling C++ code for
      GOARCH.
      
      CGO_ENABLED defaults to disabled when cross compiling and has to be
      explicitly enabled.
      
      Update #4714
      
      LGTM=minux.ma, iant
      R=golang-codereviews, minux.ma, iant, rsc, dominik.honnef
      CC=golang-codereviews
      https://golang.org/cl/57100043
      2dc759d7
  6. 05 Feb, 2014 2 commits
  7. 04 Feb, 2014 3 commits