1. 13 Apr, 2009 5 commits
    • Russ Cox's avatar
      working checkpoint. · e97121a1
      Russ Cox authored
      add comment describing new web server tree.
      make room for command line interface.
      use new path package to get rid of doubled slashes.
      use new Chdir function to avoid goroot + everything.
      
      implement new /pkg/ tree instead of using regexps.
      
      R=gri
      DELTA=267  (103 added, 72 deleted, 92 changed)
      OCL=27150
      CL=27367
      e97121a1
    • Russ Cox's avatar
      add strconv.Unquote · 73aadff8
      Russ Cox authored
      R=r
      DELTA=229  (227 added, 0 deleted, 2 changed)
      OCL=27200
      CL=27366
      73aadff8
    • Russ Cox's avatar
      fix stringrange test · a62467af
      Russ Cox authored
      R=ken
      OCL=27353
      CL=27353
      a62467af
    • Ken Thompson's avatar
      tweak · 907509de
      Ken Thompson authored
      R=r
      OCL=27344
      CL=27344
      907509de
    • Rob Pike's avatar
      fix string range to have full unicode range (up to 10FFFF). · 54ec7193
      Rob Pike authored
      add test for string range.
      
      test has minor failure: after loop the index == len(s); should be len(s)-1
      in this case.  according to spec, vars are left at position at last
      iteration.
      
      R=ken,rsc
      DELTA=259  (161 added, 96 deleted, 2 changed)
      OCL=27343
      CL=27343
      54ec7193
  2. 12 Apr, 2009 1 commit
  3. 11 Apr, 2009 2 commits
  4. 10 Apr, 2009 7 commits
  5. 09 Apr, 2009 9 commits
  6. 08 Apr, 2009 3 commits
    • Russ Cox's avatar
      bug142 · b8035ab5
      Russ Cox authored
      R=ken
      OCL=27202
      CL=27202
      b8035ab5
    • Russ Cox's avatar
      func f() (int, int); · 3067781a
      Russ Cox authored
      x := f();
      
      used to give
      	fatal error: dowidth fn struct struct { int; int }
      
      now gives
      	assignment count mismatch: 1 = 2
      
      R=ken
      OCL=27198
      CL=27201
      3067781a
    • Russ Cox's avatar
      fumbly fingers + non-working ^C · 7cbec417
      Russ Cox authored
      submitted CL without applying edits.
      
      make changes from CL 27142 review
      
      R=r
      DELTA=26  (17 added, 3 deleted, 6 changed)
      OCL=27155
      CL=27199
      7cbec417
  7. 07 Apr, 2009 10 commits
  8. 06 Apr, 2009 1 commit
  9. 04 Apr, 2009 1 commit
    • Russ Cox's avatar
      fix both of anton's bugs: · 907cb4f1
      Russ Cox authored
      * make([100]int) was being compiled to
      	make([]int), kind of.
      * []this = [100]that was working for any this, that.
      
      turned up a typo in pipe_test.go
      
      R=ken
      OCL=27081
      CL=27081
      907cb4f1
  10. 03 Apr, 2009 1 commit
    • Robert Griesemer's avatar
      Daily snapshot. · 2a9f1ee2
      Robert Griesemer authored
      - godoc now supports the following url prefixes:
        /doc/ for package documentation
        /file/ for files (directories, html, and .go files)
        /spec for the spec
        /mem for the memory model
      - formatting of comments has been fixed
      - tons of minor cleanups (still more to do)
      
      Still missing:
      - pretty printing of source is not as pretty as it used to be
      (still a relict from the massive AST cleanup which has't quite made it's way everywhere)
      - documentation entries should be sorted
      - comments in code is not printed or not properly printed
      
      TBR=r
      DELTA=416  (182 added, 100 deleted, 134 changed)
      OCL=27078
      CL=27078
      2a9f1ee2