1. 02 Feb, 2012 11 commits
  2. 01 Feb, 2012 24 commits
  3. 31 Jan, 2012 5 commits
    • Russ Cox's avatar
      cmd/go: improvements · 42526e21
      Russ Cox authored
      Print all the syntax errors.  Fixes issue 2811.
      
      Change Windows binary removal strategy.
      This should keep the temporary files closer to
      the binaries they are for, which will make it
      more likely that the rename is not cross-device
      and also make it easier to clean them up.
      Fixes #2604 (as much as we can).
      
      The standard build does not use the go command
      to install the go command anymore, so issue 2604
      is less of a concern than it originally was.
      (It uses the go_bootstrap command to install
      the go command.)
      
      Buffer 'go list' output.
      
      R=golang-dev, bradfitz, r
      CC=golang-dev
      https://golang.org/cl/5604048
      42526e21
    • Robert Griesemer's avatar
      go/doc: added error, rune to list of predeclared types · f7d473dd
      Robert Griesemer authored
      Don't throw away factory functions returning error or rune.
      
      Fixes #2820.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/5604046
      f7d473dd
    • Russ Cox's avatar
      fmt: fix caching bug in Scan · d7c04517
      Russ Cox authored
      Black box test is too time-consuming, as the bug
      does not appear until Scan has processed 2 GB of
      input in total across multiple calls, so no test.
      
      Thanks to Frederick Mayle for the diagnosis and fix.
      
      Fixes #2809.
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/5611043
      d7c04517
    • Brad Fitzpatrick's avatar
      net: remove types InvalidConnError and UnknownSocketError · d3285f2a
      Brad Fitzpatrick authored
      Both are unused and undocumented.
      
      InvalidConnError is also non-idiomatic: a FooError type can
      typically describe something, else it would be an ErrFoo
      variable.
      
      R=golang-dev, alex.brainman
      CC=golang-dev
      https://golang.org/cl/5609045
      d3285f2a
    • Russ Cox's avatar
      cmd/go: improvements · 0f105666
      Russ Cox authored
      Do not treat $GOROOT/src/pkg, $GOROOT/src/cmd,
      $GOPATH/src as package directories (only subdirectories
      of those can be package directories).  Fixes issue 2602.
      
      Accept additional compiler and linker arguments during
      cgo from $CGO_CFLAGS and $CGO_LDFLAGS, as the
      Makefiles used to do.
      
      Show failed pkg-config output.  Fixes issue 2785.
      
      Use different (perhaps better) git commands.  Fixes issue 2109.
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/5605045
      0f105666