From: Rob Pike Date: Thu, 7 Mar 2013 00:52:03 +0000 (-0800) Subject: all: delete a couple of mentions of the exp and old trees X-Git-Tag: go1.1rc2~654 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bcb1da7065424913dda7e25d62f33bfc71afd8a2;p=gostls13.git all: delete a couple of mentions of the exp and old trees R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/7551043 --- diff --git a/src/cmd/api/goapi.go b/src/cmd/api/goapi.go index 0d76b0cdb6..adf3ddf6b3 100644 --- a/src/cmd/api/goapi.go +++ b/src/cmd/api/goapi.go @@ -138,9 +138,7 @@ func main() { } for _, pkg := range pkgs { - if strings.HasPrefix(pkg, "cmd/") || - strings.HasPrefix(pkg, "exp/") || - strings.HasPrefix(pkg, "old/") { + if strings.HasPrefix(pkg, "cmd/") { continue } if fi, err := os.Stat(filepath.Join(w.root, pkg)); err != nil || !fi.IsDir() { diff --git a/src/cmd/dist/build.c b/src/cmd/dist/build.c index dda45ca625..5150ac3f29 100644 --- a/src/cmd/dist/build.c +++ b/src/cmd/dist/build.c @@ -313,7 +313,6 @@ static char *unreleased[] = { "src/cmd/cov", "src/cmd/prof", "src/pkg/old", - "src/pkg/exp", }; // setup sets up the tree for the initial build. diff --git a/src/cmd/vet/taglit.go b/src/cmd/vet/taglit.go index a19187fea1..bc3695b1e1 100644 --- a/src/cmd/vet/taglit.go +++ b/src/cmd/vet/taglit.go @@ -108,7 +108,6 @@ var untaggedLiteralWhitelist = map[string]bool{ "encoding/xml.CharData": true, "encoding/xml.Comment": true, "encoding/xml.Directive": true, - "exp/norm.Decomposition": true, "go/scanner.ErrorList": true, "image/color.Palette": true, "net.HardwareAddr": true,