- fixed a few tests and added 3 incorrectly succeeding tests
- updated go_lang.txt to be more uniform and match the implementation
- made makehtml work on Mac
- fixed a couple of bugs in go.atg

SVN=121520
diff --git a/test/if.go b/test/if.go
index 2018f70..beb7d6b 100644
--- a/test/if.go
+++ b/test/if.go
@@ -50,7 +50,7 @@
 	assertequal(count, 1, "if empty");
 
 	count = 0;
-	if one := 1; {
+	if one := 1; true {
 		count = count + one;	
 	}
 	assertequal(count, 1, "if empty one");