1. 17 Jun, 2011 7 commits
  2. 16 Jun, 2011 19 commits
  3. 15 Jun, 2011 11 commits
  4. 14 Jun, 2011 3 commits
    • David Symonds's avatar
      mail: cosmetic fixes. · 812b2b64
      David Symonds authored
      R=rsc, gri
      CC=golang-dev
      https://golang.org/cl/4602062
      812b2b64
    • Russ Cox's avatar
      exp/regexp/syntax: more escapes, character classes · 1a4681ed
      Russ Cox authored
      Still TODO: parsing optimizations
      
      make_perl_groups.pl is copied with minimal modifications
      (just to generate Go syntax instead of C++) from RE2.
      Google Inc is "The RE2 Author" of that file and is one of
      the Go Authors, so copyright changed to the Go Authors instead.
      
      R=sam.thorogood, r, fvbommel, robert.hencke
      CC=golang-dev
      https://golang.org/cl/4612041
      1a4681ed
    • Lucio De Re's avatar
      build: fix header files for Plan 9 · 340251e4
      Lucio De Re authored
      The "elf.h" header changes involve only comments, the released
      Plan 9 C preprocessing function does not cope with multiline
      comments following the #define keyword.  All multiline comments
      have been moved to the line above the associated definition.
      Sigh!  Fixing the Plan 9 compiler is not an option.
      
      <time.h> does not exist in the Plan 9 Native library.  I have
      moved it from src/cmd/ld/pe.h to include/u.h. RSC correctly points
      out that this copy of <u.h> is not the one used to compile the
      Go release on Plan 9 platforms.
      
      R=golang-dev
      CC=golang-dev, rsc
      https://golang.org/cl/4574042
      340251e4