1. 30 May, 2013 7 commits
  2. 29 May, 2013 11 commits
  3. 28 May, 2013 9 commits
  4. 27 May, 2013 6 commits
  5. 25 May, 2013 2 commits
  6. 24 May, 2013 5 commits
    • Rob Pike's avatar
      fmt.Printf: introduce notation for random access to arguments. · 7472ce0e
      Rob Pike authored
      This text is added to doc.go:
      
              Explicit argument indexes:
      
              In Printf, Sprintf, and Fprintf, the default behavior is for each
              formatting verb to format successive arguments passed in the call.
              However, the notation [n] immediately before the verb indicates that the
              nth one-indexed argument is to be formatted instead. The same notation
              before a '*' for a width or precision selects the argument index holding
              the value. After processing a bracketed expression [n], arguments n+1,
              n+2, etc. will be processed unless otherwise directed.
      
              For example,
                      fmt.Sprintf("%[2]d %[1]d\n", 11, 22)
              will yield "22, 11", while
                      fmt.Sprintf("%[3]*[2].*[1]f", 12.0, 2, 6),
              equivalent to
                      fmt.Sprintf("%6.2f", 12.0),
              will yield " 12.00". Because an explicit index affects subsequent verbs,
              this notation can be used to print the same values multiple times
              by resetting the index for the first argument to be repeated:
                      fmt.Sprintf("%d %d %#[1]x %#x", 16, 17)
              will yield "16 17 0x10 0x11".
      
      The notation chosen differs from that in C, but I believe it's easier to read
      and to remember (we're indexing the arguments), and compatibility with
      C's printf was never a strong goal anyway.
      
      While we're here, change the word "field" to "arg" or "argument" in the
      code; it was being misused and was confusing.
      
      R=rsc, bradfitz, rogpeppe, minux.ma, peter.armitage
      CC=golang-dev
      https://golang.org/cl/9680043
      7472ce0e
    • David du Colombier's avatar
      build: fix make.rc on Plan 9 · ffe8a3c5
      David du Colombier authored
      Set $status as null to prevent rc from exiting
      on the last --no-banner argument checking when
      used with rc -e. It allows all.rc to not exit
      before executing run.rc
      
      R=golang-dev, lucio.dere, rsc
      CC=golang-dev
      https://golang.org/cl/9611045
      ffe8a3c5
    • Russ Cox's avatar
      doc: start go 1.2 notes · 30fde1b2
      Russ Cox authored
      This is a file of hints, not a file of polished text.
      Let's not try to do polished text until we start the
      release process.
      
      R=golang-dev, gri
      CC=golang-dev
      https://golang.org/cl/9750043
      30fde1b2
    • Adam Langley's avatar
      crypto/x509: harmonise error prefixes. · ddc86791
      Adam Langley authored
      crypto/x509 has ended up with a variety of error formats. This change makes them all start with "x509: ".
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/9736043
      ddc86791
    • Rob Pike's avatar
      cmd/cov: delete · 650a1ef6
      Rob Pike authored
      It doesn't work, it's not portable, it's not part of the released
      binaries, and a better tool is due.
      
      Fixes #1319.
      Fixes #4621.
      
      R=golang-dev, bradfitz, dave, rsc
      CC=golang-dev
      https://golang.org/cl/9681044
      650a1ef6