1. 26 Oct, 2011 12 commits
  2. 25 Oct, 2011 5 commits
  3. 24 Oct, 2011 3 commits
  4. 23 Oct, 2011 2 commits
  5. 22 Oct, 2011 1 commit
  6. 21 Oct, 2011 6 commits
  7. 20 Oct, 2011 5 commits
  8. 19 Oct, 2011 6 commits
    • Dave Cheney's avatar
      misc/vim: add highlighting for delete · 57d07e32
      Dave Cheney authored
      R=golang-dev, n13m3y3r
      CC=golang-dev
      https://golang.org/cl/5303050
      57d07e32
    • Gustavo Niemeyer's avatar
      fmt: don't panic formatting nil interfaces · 526d0818
      Gustavo Niemeyer authored
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/5296044
      526d0818
    • Russ Cox's avatar
      govet: check canonical dynamic method signatures · b0ec32db
      Russ Cox authored
      Adds check that, for example, a Scan method taking
      a first argument of type fmt.ScanState has the correct
      signature to satisfy fmt.Scanner.
      
      Similarly, a ReadByte should return byte, os.Error.
      
      These are important to check because various pieces
      of code (fmt, gob, json, flate) do dynamic checks
      for these methods, so code with incorrect signatures
      would not be flagged at compile time.
      
      These become even more important to check when
      rune is introduced.
      
      R=r
      CC=golang-dev
      https://golang.org/cl/5305044
      b0ec32db
    • Russ Cox's avatar
      unicode: sort tables.go · b4d6b71e
      Russ Cox authored
      Makes tables.go output consistent across maketable runs.
      (It was already inconsistent across architectures; the new
      map iteration order just make it inconsistent across runs.)
      
      R=r
      CC=golang-dev
      https://golang.org/cl/5303046
      b4d6b71e
    • Russ Cox's avatar
      codereview: show LGTMs in hg p · c0523e1d
      Russ Cox authored
      Shows first line of any response that the codereview server
      has identified as an LGTM.  Example output below.
      
      5305046:
              big: update for fmt interface changes
      
              Nothing terribly interesting here.
      
              Reviewer: gri@golang.org
                      gri: LGTM
              CC: golang-dev@googlegroups.com
              Files:
                      src/pkg/big/int.go
                      src/pkg/big/nat.go
                      src/pkg/big/nat_test.go
                      src/pkg/big/rat.go
      
      5307044:
              exp/template/html: use rune
      
              Nothing terribly interesting here.
      
              Reviewer: mikesamuel@gmail.com, nigeltao@golang.org
                      mikesamuel: I don't see a type def for rune.  Assuming that's a new intrinsic, LGTM.
              CC: golang-dev@googlegroups.com
              Files:
                      src/pkg/exp/template/html/css.go
                      src/pkg/exp/template/html/css_test.go
                      src/pkg/exp/template/html/html.go
                      src/pkg/exp/template/html/js.go
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/5297045
      c0523e1d
    • Russ Cox's avatar
      gotest: use $GCFLAGS like make does · 35b2bfc8
      Russ Cox authored
      R=golang-dev, bradfitz
      CC=golang-dev
      https://golang.org/cl/5297044
      35b2bfc8