An error occurred fetching the project authors.
  1. 08 Feb, 2012 38 commits
  2. 07 Feb, 2012 2 commits
    • Rob Pike's avatar
      bug408: delete · c5de9b77
      Rob Pike authored
      It's disabled and unreproducible.
      
      R=golang-dev, bradfitz
      CC=golang-dev
      https://golang.org/cl/5642053
      c5de9b77
    • Robert Griesemer's avatar
      go/printer, gofmt: don't print incorrect programs · 3d6b3685
      Robert Griesemer authored
      Be careful when printing line comments with incorrect
      position information. Maintain additional state
      impliedSemi: when set, a comment containing a newline
      would imply a semicolon and thus placement must be
      delayed.
      
      Precompute state information pertaining to the next
      comment for faster checks (the printer is marginally
      faster now despite additional checks for each comment).
      
      No effect on existing src, misc sources.
      
      Fixes #1505.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/5598054
      3d6b3685