1. 24 Sep, 2012 6 commits
  2. 23 Sep, 2012 7 commits
  3. 22 Sep, 2012 6 commits
  4. 21 Sep, 2012 10 commits
  5. 20 Sep, 2012 9 commits
  6. 19 Sep, 2012 2 commits
    • David Symonds's avatar
      vet: fix rangeloop. · 5a93fea0
      David Symonds authored
      In a range loop, the presence of a value implies the presence of a key.
      However, the presence of a value as an *ast.Ident does not imply that
      the key is also an *ast.Ident, thus leading to a panic any time the
      two argument form is used where the key is not an identifier.
      
      R=golang-dev, adg, r
      CC=golang-dev
      https://golang.org/cl/6540045
      5a93fea0
    • David Symonds's avatar
      misc/vim: fix Drop for imports after the first group. · adcf0a2a
      David Symonds authored
      Previously, an import block such as
      	import (
              	"net"
      
                      "stack"
              )
      would not permit ":Drop stack" to work because we were aborting
      the scan early, which is only correct when Import is in operation.
      
      R=golang-dev, franciscossouza
      CC=golang-dev
      https://golang.org/cl/6532053
      adcf0a2a