- 17 Apr, 2009 4 commits
-
-
Rob Pike authored
R=rsc OCL=27579 CL=27579
-
Russ Cox authored
import ( "vector" -> "container/vector" "ast" -> "go/ast" "sha1" -> "hash/sha1" etc. ) and update Makefiles. Because I did the conversion semi-automatically, I sorted all the import blocks as a post-processing. Some files have therefore changed that didn't strictly need to. Rename local packages to lower case. The upper/lower distinction doesn't work on OS X and complicates the "single-package directories with the same package name as directory name" heuristic used by gobuild and godoc to create the correlation between source and binary locations. Now that we have a plan to avoid globally unique names, the upper/lower is unnecessary. The renamings will cause trouble for a few users, but so will the change in import paths. This way, the two maintenance fixes are rolled into one inconvenience. R=r OCL=27573 CL=27575
-
Russ Cox authored
for example, if building in src/lib/container, objects go in obj/container/, so that 6g -Iobj will find "container/vector". install packages in hierarchy in $GOROOT. this change only updates gobuild. another change will have to update all the sources to refer to "container/vector" etc and regenerate all the Makefiles. there are some pretty lame functions here (e.g., Mkdir, Remove, the Getenv("PWD")) but i will implement better ones in another CL. R=r DELTA=117 (99 added, 2 deleted, 16 changed) OCL=27550 CL=27574
-
Rob Pike authored
R=rsc DELTA=92 (73 added, 0 deleted, 19 changed) OCL=27566 CL=27572
-
- 16 Apr, 2009 16 commits
-
-
Russ Cox authored
fix bug in RPC.go (import "RPC" not "rpc.pb") R=r DELTA=483 (261 added, 64 deleted, 158 changed) OCL=27547 CL=27549
-
Russ Cox authored
R=r DELTA=1305 (704 added, 590 deleted, 11 changed) OCL=27546 CL=27548
-
Russ Cox authored
R=ken OCL=27537 CL=27545
-
Rob Pike authored
as the .6 file is read. now tests will be run in file order. R=rsc DELTA=9 (6 added, 1 deleted, 2 changed) OCL=27542 CL=27544
-
Rob Pike authored
R=gri OCL=27543 CL=27543
-
Rob Pike authored
R=rsc DELTA=13 (6 added, 0 deleted, 7 changed) OCL=27539 CL=27541
-
Rob Pike authored
R=rsc DELTA=5 (3 added, 0 deleted, 2 changed) OCL=27536 CL=27540
-
Rob Pike authored
R=rsc,iant DELTA=17 (11 added, 0 deleted, 6 changed) OCL=27529 CL=27535
-
Russ Cox authored
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
-
Russ Cox authored
R=ken OCL=27533 CL=27533
-
Russ Cox authored
R=r DELTA=24 (21 added, 0 deleted, 3 changed) OCL=27527 CL=27527
-
Russ Cox authored
R=gri DELTA=1341 (668 added, 282 deleted, 391 changed) OCL=27485 CL=27526
-
Russ Cox authored
R=r DELTA=6 (5 added, 1 deleted, 0 changed) OCL=27500 CL=27525
-
Russ Cox authored
(HTTP requires absolute in protocol). add URL tests R=r DELTA=243 (242 added, 0 deleted, 1 changed) OCL=27472 CL=27523
-
Russ Cox authored
R=r DELTA=36 (1 added, 0 deleted, 35 changed) OCL=27484 CL=27522
-
Russ Cox authored
R=gri DELTA=252 (240 added, 3 deleted, 9 changed) OCL=27482 CL=27521
-
- 15 Apr, 2009 10 commits
-
-
Russ Cox authored
R=r,dnadasi DELTA=9 (8 added, 0 deleted, 1 changed) OCL=27473 CL=27486
-
Russ Cox authored
R=r DELTA=10 (10 added, 0 deleted, 0 changed) OCL=27479 CL=27481
-
Russ Cox authored
turn on error reporting; not enough info otherwise. R=r DELTA=49 (43 added, 6 deleted, 0 changed) OCL=27476 CL=27478
-
Rob Pike authored
R=rsc DELTA=139 (90 added, 7 deleted, 42 changed) OCL=27475 CL=27477
-
Russ Cox authored
R=r DELTA=30 (30 added, 0 deleted, 0 changed) OCL=27470 CL=27474
-
Russ Cox authored
file system server add NotFound, Redirect functions method on a string R=r DELTA=212 (199 added, 4 deleted, 9 changed) OCL=27467 CL=27471
-
Rob Pike authored
DELTA=32 (29 added, 2 deleted, 1 changed) OCL=27197 CL=27469
-
Russ Cox authored
some day i will fix this for real. R=ken OCL=27468 CL=27468
-
Russ Cox authored
R=r DELTA=16 (14 added, 0 deleted, 2 changed) OCL=27464 CL=27466
-
Russ Cox authored
after EOF has been hit, because nbuf is now 0 or -1. discard old comment. R=r DELTA=3 (0 added, 0 deleted, 3 changed) OCL=27463 CL=27465
-
- 14 Apr, 2009 8 commits
-
-
Ian Lance Taylor authored
6g generates for functions: expect the keyword "func". The older reflection syntax, without the "func", is still recognized for simplicity in parsing interface reflection strings. R=r,rsc DELTA=66 (31 added, 8 deleted, 27 changed) OCL=27396 CL=27422
-
Russ Cox authored
delay indirection so that values passed to formatters preserve pointer-ness. R=r OCL=27410 CL=27414
-
Rob Pike authored
update pretty to use it. change stdout to stderr in pretty. R=rsc DELTA=173 (52 added, 24 deleted, 97 changed) OCL=27405 CL=27409
-
Rob Pike authored
R=rsc DELTA=6 (0 added, 0 deleted, 6 changed) OCL=27404 CL=27404
-
Russ Cox authored
--- FAIL: template.TestAll for "{.section data}{.end} {header}\n": expected " 77\n" got " {header}\n" R=r DELTA=20 (14 added, 0 deleted, 6 changed) OCL=27395 CL=27402
-
Russ Cox authored
func(w io.Write, value interface{}, format string) R=r DELTA=16 (3 added, 3 deleted, 10 changed) OCL=27399 CL=27401
-
Rob Pike authored
R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=27397 CL=27400
-
Russ Cox authored
change canexec to canExec. R=r DELTA=7 (0 added, 0 deleted, 7 changed) OCL=27393 CL=27398
-
- 13 Apr, 2009 2 commits