]> Cypherpunks repositories - gostls13.git/commitdiff
godoc, suffixarray: switch to exp/regexp
authorRobert Griesemer <gri@golang.org>
Mon, 12 Sep 2011 19:20:48 +0000 (12:20 -0700)
committerRobert Griesemer <gri@golang.org>
Mon, 12 Sep 2011 19:20:48 +0000 (12:20 -0700)
R=rsc
CC=golang-dev
https://golang.org/cl/4983058

src/cmd/godoc/codewalk.go
src/cmd/godoc/format.go
src/cmd/godoc/godoc.go
src/cmd/godoc/index.go
src/cmd/godoc/main.go
src/pkg/index/suffixarray/suffixarray.go
src/pkg/index/suffixarray/suffixarray_test.go

index 602aa43a804abb013b5b3ed8f0f7b4592c4c8602..214fc5644e8d59b07ddcda01c72ed4afe3748c7b 100644 (file)
@@ -18,7 +18,7 @@ import (
        "io"
        "log"
        "os"
-       "regexp"
+       "exp/regexp"
        "sort"
        "strconv"
        "strings"
index 78dde4166f0cab6db5eddefe201116f6b9b8846b..91b74603495059af10978479e6a1b7a9338cb38c 100644 (file)
@@ -15,7 +15,7 @@ import (
        "go/scanner"
        "go/token"
        "io"
-       "regexp"
+       "exp/regexp"
        "strconv"
        "template"
 )
index c98dca4199d7767f725708078fe402de78573c8d..b000d5420ce56cd0684b7407e06fc20202b2370d 100644 (file)
@@ -19,7 +19,7 @@ import (
        "os"
        "path"
        "path/filepath"
-       "regexp"
+       "exp/regexp"
        "runtime"
        "sort"
        "strings"
index 83e090ffe5ba3b5ae3dcd62757d32a0e8601ede2..fa2dbf12611fe6df02876c66780149baab5a7b9f 100644 (file)
@@ -48,7 +48,7 @@ import (
        "io"
        "os"
        "path/filepath"
-       "regexp"
+       "exp/regexp"
        "sort"
        "strings"
 )
index 74d3111ffd2ae7a915ee9dc8a20b29142bace53f..8585895f5e4b0f28ea6cead3ece5a24648ebb390 100644 (file)
@@ -40,7 +40,7 @@ import (
        "os"
        "path"
        "path/filepath"
-       "regexp"
+       "exp/regexp"
        "runtime"
        "strings"
        "time"
index 82e98d2ef5429353e228cd9f9781f2aa30df899b..c78de854de12e0a81b2513556da9fc692d7a88b5 100644 (file)
@@ -18,7 +18,7 @@ package suffixarray
 
 import (
        "bytes"
-       "regexp"
+       "exp/regexp"
        "sort"
 )
 
index 0237485005666929a1b71841b786af9946603825..d292356db10dfbc863832c479c9f7092cbb8d637 100644 (file)
@@ -6,7 +6,7 @@ package suffixarray
 
 import (
        "bytes"
-       "regexp"
+       "exp/regexp"
        "sort"
        "strings"
        "testing"