Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								1f6463f823 
								
							 
						 
						
							
							
								
								Convert go tree to hierarchical pkg directory:  
							
							... 
							
							
							
							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 
							
						 
						
							2009-04-16 20:52:37 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								60ce95d7a1 
								
							 
						 
						
							
							
								
								code changes for array conversion.  
							
							... 
							
							
							
							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 
							
						 
						
							2009-04-15 20:27:45 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								a62467af93 
								
							 
						 
						
							
							
								
								fix stringrange test  
							
							... 
							
							
							
							R=ken
OCL=27353
CL=27353 
							
						 
						
							2009-04-13 05:31:44 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								54ec719391 
								
							 
						 
						
							
							
								
								fix string range to have full unicode range (up to 10FFFF).  
							
							... 
							
							
							
							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 
							
						 
						
							2009-04-12 17:01:17 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								72d867660d 
								
							 
						 
						
							
							
								
								bug142 is fixed  
							
							... 
							
							
							
							R=rsc
OCL=27331
CL=27331 
							
						 
						
							2009-04-10 17:58:10 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								78edbfdcf4 
								
							 
						 
						
							
							
								
								test for new string bug  
							
							... 
							
							
							
							TBR=r
OCL=27306
CL=27306 
							
						 
						
							2009-04-10 06:22:41 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								7d6c0018fb 
								
							 
						 
						
							
							
								
								messages changed; updated golden.out for bug037  
							
							... 
							
							
							
							R=rsc
OCL=27248
CL=27248 
							
						 
						
							2009-04-08 23:34:44 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								b8035ab5a5 
								
							 
						 
						
							
							
								
								bug142  
							
							... 
							
							
							
							R=ken
OCL=27202
CL=27202 
							
						 
						
							2009-04-07 23:30:59 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								3067781ab9 
								
							 
						 
						
							
							
								
								func f() (int, int);  
							
							... 
							
							
							
							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 
							
						 
						
							2009-04-07 22:20:37 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								a888d4d233 
								
							 
						 
						
							
							
								
								not a bug by current understanding, so delete this file.  
							
							... 
							
							
							
							6g says: bug138.go:8: constant -1 overflows uint
gccgo says: bug138.go:8:16: error: integer constant overflow
R=rsc
DELTA=19  (0 added, 19 deleted, 0 changed)
OCL=27099
CL=27149 
							
						 
						
							2009-04-07 00:15:49 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								4b536c1e07 
								
							 
						 
						
							
							
								
								test for and fix bug involving reflect v.Interface() and ==.  
							
							... 
							
							
							
							R=r
DELTA=156  (149 added, 2 deleted, 5 changed)
OCL=26973
CL=26973 
							
						 
						
							2009-03-31 17:33:04 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								a99a7f60c3 
								
							 
						 
						
							
							
								
								tests changed - throw calls panic directly now  
							
							... 
							
							
							
							instead of dereferencing nil, so no more SIGSEGVs.
R=r
DELTA=28  (0 added, 14 deleted, 14 changed)
OCL=26881
CL=26881 
							
						 
						
							2009-03-30 00:28:08 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ken Thompson 
								
							 
						 
						
							
							
							
							
								
							
							
								a805e54a38 
								
							 
						 
						
							
							
								
								golden  
							
							... 
							
							
							
							R=r
OCL=26699
CL=26699 
							
						 
						
							2009-03-24 16:47:33 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ken Thompson 
								
							 
						 
						
							
							
							
							
								
							
							
								b8be809c10 
								
							 
						 
						
							
							
								
								^ type(const) now inverts "enough" bits  
							
							... 
							
							
							
							^ signed(const) becomes illegal
^ unsigned(const) becomes legal
R=r
OCL=26697
CL=26697 
							
						 
						
							2009-03-24 16:40:38 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								13584f4a23 
								
							 
						 
						
							
							
								
								add test for close/closed, fix a few implementation bugs.  
							
							... 
							
							
							
							R=ken
OCL=26664
CL=26664 
							
						 
						
							2009-03-23 18:50:35 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								86145611b0 
								
							 
						 
						
							
							
								
								allow range on nil maps  
							
							... 
							
							
							
							R=ken
OCL=26663
CL=26663 
							
						 
						
							2009-03-23 18:32:37 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								7525e085d2 
								
							 
						 
						
							
							
								
								bug141 is fixed  
							
							... 
							
							
							
							R=ken
DELTA=56  (26 added, 30 deleted, 0 changed)
OCL=26628
CL=26628 
							
						 
						
							2009-03-22 21:02:17 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ian Lance Taylor 
								
							 
						 
						
							
							
							
							
								
							
							
								90943c8ee4 
								
							 
						 
						
							
							
								
								Test that interfaces work in type switches.  
							
							... 
							
							
							
							R=ken,rsc
DELTA=30  (30 added, 0 deleted, 0 changed)
OCL=26599
CL=26604 
							
						 
						
							2009-03-20 16:30:54 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								54aa835b44 
								
							 
						 
						
							
							
								
								range over channels.  
							
							... 
							
							
							
							also fix multiple-evaluation bug in range over arrays.
R=ken
OCL=26576
CL=26576 
							
						 
						
							2009-03-20 11:32:58 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ian Lance Taylor 
								
							 
						 
						
							
							
							
							
								
							
							
								386845b23f 
								
							 
						 
						
							
							
								
								Match gccgo error messages.  
							
							... 
							
							
							
							bug090.go:41:6: error: floating point constant truncated to integer
bug090.go:32:6: error: floating point constant truncated to integer
bug090.go:34:14: error: floating point constant truncated to integer
bug090.go:37:5: error: incompatible types in assignment
bug090.go:40:5: error: incompatible types in assignment
R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=26564
CL=26574 
							
						 
						
							2009-03-20 10:34:46 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ian Lance Taylor 
								
							 
						 
						
							
							
							
							
								
							
							
								8b3df525a2 
								
							 
						 
						
							
							
								
								Modify error regexps to match gccgo error messages.  
							
							... 
							
							
							
							const1.go:23:13: error: integer constant overflow
const1.go:25:13: error: integer constant overflow
const1.go:26:14: error: integer constant overflow
const1.go:27:18: error: integer constant overflow
const1.go:28:19: error: integer constant overflow
const1.go:29:16: error: integer constant overflow
const1.go:29:25: error: integer constant overflow
const1.go:30:13: error: integer constant overflow
const1.go:33:14: error: integer constant overflow
const1.go:34:14: error: integer constant overflow
const1.go:36:22: error: integer constant overflow
const1.go:37:7: error: integer constant overflow
const1.go:38:8: error: integer constant overflow
const1.go:39:7: error: integer constant overflow
const1.go:40:7: error: integer constant overflow
const1.go:41:8: error: integer constant overflow
const1.go:44:23: error: integer constant overflow
const1.go:46:13: error: integer constant overflow
const1.go:47:24: error: integer constant overflow
const1.go:48:24: error: integer constant overflow
const1.go:49:22: error: integer constant overflow
const1.go:51:23: error: integer constant overflow
const1.go:52:19: error: division by zero
const1.go:58:11: error: division by zero
const1.go:43:17: error: integer constant overflow
const1.go:45:13: error: integer constant overflow
const1.go:55:19: error: floating point overflow
const1.go:56:28: error: floating point overflow
const1.go:57:11: error: floating point overflow
const1.go:64:2: error: argument 0 has wrong type
const1.go:65:2: error: argument 0 has wrong type
const1.go:66:2: error: argument 0 has wrong type
const1.go:68:2: error: argument 0 has wrong type
const1.go:69:2: error: argument 0 has wrong type
const1.go:70:4: error: floating point constant truncated to integer
const1.go:72:2: error: argument 0 has wrong type
const1.go:73:2: error: argument 0 has wrong type
const1.go:74:2: error: argument 0 has wrong type
R=rsc
DELTA=34  (0 added, 0 deleted, 34 changed)
OCL=26560
CL=26560 
							
						 
						
							2009-03-19 17:33:28 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								08eeb2535d 
								
							 
						 
						
							
							
								
								simplify test to eliminate now-deprecated forms of switch.  
							
							... 
							
							
							
							R=rsc
DELTA=76  (0 added, 63 deleted, 13 changed)
OCL=26439
CL=26490 
							
						 
						
							2009-03-18 14:05:05 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ken Thompson 
								
							 
						 
						
							
							
							
							
								
							
							
								1cdcfda140 
								
							 
						 
						
							
							
								
								remove assignment cases from switch  
							
							... 
							
							
							
							R=r
OCL=26480
CL=26480 
							
						 
						
							2009-03-18 12:13:42 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								bd3c478f93 
								
							 
						 
						
							
							
								
								add value checks to the other switch - should have done this in prior round  
							
							... 
							
							
							
							R=rsc
OCL=26438
CL=26438 
							
						 
						
							2009-03-17 20:57:54 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								bcb464d221 
								
							 
						 
						
							
							
								
								add test for type switches  
							
							... 
							
							
							
							R=rsc
DELTA=169  (169 added, 0 deleted, 0 changed)
OCL=26433
CL=26437 
							
						 
						
							2009-03-17 20:55:42 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ian Lance Taylor 
								
							 
						 
						
							
							
							
							
								
							
							
								bd64e81041 
								
							 
						 
						
							
							
								
								Recognize gccgo error message.  
							
							... 
							
							
							
							const2.go:7:9: error: expected '='
Uses '.' to recognize the quotation marks, as the actual
characters printed depend on the user's locale.
R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=26360
CL=26373 
							
						 
						
							2009-03-16 21:48:07 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ian Lance Taylor 
								
							 
						 
						
							
							
							
							
								
							
							
								1e39143966 
								
							 
						 
						
							
							
								
								Don't try to define the same label twice, as that produces a  
							
							... 
							
							
							
							label redefinition error.
R=gri
DELTA=6  (0 added, 0 deleted, 6 changed)
OCL=26357
CL=26372 
							
						 
						
							2009-03-16 21:47:38 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robert Griesemer 
								
							 
						 
						
							
							
							
							
								
							
							
								5a27079801 
								
							 
						 
						
							
							
								
								spec and implementation disagree with respect to label declarations  
							
							... 
							
							
							
							R=rsc
DELTA=19  (19 added, 0 deleted, 0 changed)
OCL=26284
CL=26336 
							
						 
						
							2009-03-16 11:21:58 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robert Griesemer 
								
							 
						 
						
							
							
							
							
								
							
							
								b260916a55 
								
							 
						 
						
							
							
								
								internal compiler error  
							
							... 
							
							
							
							R=rsc
DELTA=18  (18 added, 0 deleted, 0 changed)
OCL=26266
CL=26266 
							
						 
						
							2009-03-13 14:14:50 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								5fbadf0bc3 
								
							 
						 
						
							
							
								
								warn -> yyerror in mparith.  
							
							... 
							
							
							
							close two more bugs.
R=ken
OCL=26226
CL=26226 
							
						 
						
							2009-03-12 19:57:30 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								8f194bf5ff 
								
							 
						 
						
							
							
								
								make 6g constants behave as ken proposes.  (i hope.)  
							
							... 
							
							
							
							various bug fixes and tests involving constants.
test/const1.go is the major new test case.
R=ken
OCL=26216
CL=26224 
							
						 
						
							2009-03-12 19:04:38 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ken Thompson 
								
							 
						 
						
							
							
							
							
								
							
							
								767845b6fa 
								
							 
						 
						
							
							
								
								bug 125  
							
							... 
							
							
							
							R=r
OCL=26146
CL=26146 
							
						 
						
							2009-03-11 17:37:04 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ken Thompson 
								
							 
						 
						
							
							
							
							
								
							
							
								48f6b516e2 
								
							 
						 
						
							
							
								
								bug 137  
							
							... 
							
							
							
							R=r
OCL=26142
CL=26142 
							
						 
						
							2009-03-11 16:25:45 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								4eb7ceba58 
								
							 
						 
						
							
							
								
								complain when trying to put T into an interface  
							
							... 
							
							
							
							if T has pointer methods.  this is just a heuristic
but it catches the problem robert ran into and
lets me put the larger interface issues aside for
now.  found one bug in pretty.
R=ken
OCL=26141
CL=26141 
							
						 
						
							2009-03-11 16:06:17 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ken Thompson 
								
							 
						 
						
							
							
							
							
								
							
							
								d27e9f528d 
								
							 
						 
						
							
							
								
								bug086  
							
							... 
							
							
							
							R=r
OCL=26090
CL=26090 
							
						 
						
							2009-03-10 19:16:31 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robert Griesemer 
								
							 
						 
						
							
							
							
							
								
							
							
								b2e91a9a29 
								
							 
						 
						
							
							
								
								constant conversion of int (non-ideal) constant doesn't work  
							
							... 
							
							
							
							R=rsc
DELTA=20  (20 added, 0 deleted, 0 changed)
OCL=26054
CL=26062 
							
						 
						
							2009-03-10 16:39:23 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								99d00eae3c 
								
							 
						 
						
							
							
								
								delete vestigial references to package syscall  
							
							... 
							
							
							
							R=rsc
DELTA=8  (0 added, 5 deleted, 3 changed)
OCL=25857
CL=25861 
							
						 
						
							2009-03-06 16:03:59 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								63985b489b 
								
							 
						 
						
							
							
								
								bug085 bug129  
							
							... 
							
							
							
							R=ken
OCL=25787
CL=25791 
							
						 
						
							2009-03-05 15:57:03 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								5ef8e1d47e 
								
							 
						 
						
							
							
								
								update missed test case to {}  
							
							... 
							
							
							
							R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=25648
CL=25654 
							
						 
						
							2009-03-03 16:09:12 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								be2edb5761 
								
							 
						 
						
							
							
								
								Automated g4 rollback of changelist 25024,  
							
							... 
							
							
							
							plus significant hand editing.
Back to T{x} for composite literals.
R=r
OCL=25612
CL=25632 
							
						 
						
							2009-03-03 08:39:12 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								88b1f8594a 
								
							 
						 
						
							
							
								
								bug130 is fixed  
							
							... 
							
							
							
							R=ken
OCL=25448
CL=25448 
							
						 
						
							2009-02-25 16:31:42 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								ebc10db3e1 
								
							 
						 
						
							
							
								
								allow parens to disambiguate types.  
							
							... 
							
							
							
							examples:
	chan <- (chan int)
	chan (<- chan int)
	(map[string]func())("a": main)
R=ken
OCL=25151
CL=25151 
							
						 
						
							2009-02-18 10:07:46 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								d3d0c256be 
								
							 
						 
						
							
							
								
								bug123  
							
							... 
							
							
							
							R=ken
OCL=25075
CL=25075 
							
						 
						
							2009-02-16 17:44:05 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robert Griesemer 
								
							 
						 
						
							
							
							
							
								
							
							
								127526649f 
								
							 
						 
						
							
							
								
								- vector package (identical to array except for names)  
							
							... 
							
							
							
							- updated some file (but not all - left array package in place for now)
R=rsc
DELTA=530  (483 added, 0 deleted, 47 changed)
OCL=25025
CL=25025 
							
						 
						
							2009-02-13 15:07:56 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								9f8f2e6130 
								
							 
						 
						
							
							
								
								convert composite literals from { } to ( ).  
							
							... 
							
							
							
							only non-trivial changes are in
	convlit1.go
	golden.out
R=gri
OCL=25019
CL=25024 
							
						 
						
							2009-02-13 14:48:32 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robert Griesemer 
								
							 
						 
						
							
							
							
							
								
							
							
								920ab67b4c 
								
							 
						 
						
							
							
								
								label declarations not handled properly  
							
							... 
							
							
							
							R=rsc
DELTA=27  (27 added, 0 deleted, 0 changed)
OCL=25015
CL=25015 
							
						 
						
							2009-02-13 13:42:43 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Russ Cox 
								
							 
						 
						
							
							
							
							
								
							
							
								49e2087848 
								
							 
						 
						
							
							
								
								insert type assertions when narrowing.  
							
							... 
							
							
							
							R=r
OCL=24349
CL=24913 
							
						 
						
							2009-02-11 17:55:16 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robert Griesemer 
								
							 
						 
						
							
							
							
							
								
							
							
								a85e06f302 
								
							 
						 
						
							
							
								
								bug: empty statement not properly recognized in conjunction w/ labels  
							
							... 
							
							
							
							R=r
DELTA=14  (14 added, 0 deleted, 0 changed)
OCL=24610
CL=24610 
							
						 
						
							2009-02-06 16:45:37 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ian Lance Taylor 
								
							 
						 
						
							
							
							
							
								
							
							
								1103d78c84 
								
							 
						 
						
							
							
								
								Recognize gccgo error messages:  
							
							... 
							
							
							
							func4.go:8:11: error: invalid operand for unary '&'
func4.go:9:8: error: invalid left hand side of assignment
R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=24294
CL=24603 
							
						 
						
							2009-02-06 15:57:02 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Rob Pike 
								
							 
						 
						
							
							
							
							
								
							
							
								ee9b5a15a1 
								
							 
						 
						
							
							
								
								powser cleanup.  
							
							... 
							
							
							
							- don't need *struct
- don't need item/rat both
- closures make the inner slaves easier
- delete some old BUG comments
powser2 is left mostly alone, for variety.
R=rsc
DELTA=134  (2 added, 20 deleted, 112 changed)
OCL=24579
CL=24581 
							
						 
						
							2009-02-06 15:03:14 -08:00