Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
7944bbf2
Commit
7944bbf2
authored
Sep 12, 2011
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
godoc, suffixarray: switch to exp/regexp
R=rsc CC=golang-dev
https://golang.org/cl/4983058
parent
817da665
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
codewalk.go
src/cmd/godoc/codewalk.go
+1
-1
format.go
src/cmd/godoc/format.go
+1
-1
godoc.go
src/cmd/godoc/godoc.go
+1
-1
index.go
src/cmd/godoc/index.go
+1
-1
main.go
src/cmd/godoc/main.go
+1
-1
suffixarray.go
src/pkg/index/suffixarray/suffixarray.go
+1
-1
suffixarray_test.go
src/pkg/index/suffixarray/suffixarray_test.go
+1
-1
No files found.
src/cmd/godoc/codewalk.go
View file @
7944bbf2
...
...
@@ -18,7 +18,7 @@ import (
"io"
"log"
"os"
"regexp"
"
exp/
regexp"
"sort"
"strconv"
"strings"
...
...
src/cmd/godoc/format.go
View file @
7944bbf2
...
...
@@ -15,7 +15,7 @@ import (
"go/scanner"
"go/token"
"io"
"regexp"
"
exp/
regexp"
"strconv"
"template"
)
...
...
src/cmd/godoc/godoc.go
View file @
7944bbf2
...
...
@@ -19,7 +19,7 @@ import (
"os"
"path"
"path/filepath"
"regexp"
"
exp/
regexp"
"runtime"
"sort"
"strings"
...
...
src/cmd/godoc/index.go
View file @
7944bbf2
...
...
@@ -48,7 +48,7 @@ import (
"io"
"os"
"path/filepath"
"regexp"
"
exp/
regexp"
"sort"
"strings"
)
...
...
src/cmd/godoc/main.go
View file @
7944bbf2
...
...
@@ -40,7 +40,7 @@ import (
"os"
"path"
"path/filepath"
"regexp"
"
exp/
regexp"
"runtime"
"strings"
"time"
...
...
src/pkg/index/suffixarray/suffixarray.go
View file @
7944bbf2
...
...
@@ -18,7 +18,7 @@ package suffixarray
import
(
"bytes"
"regexp"
"
exp/
regexp"
"sort"
)
...
...
src/pkg/index/suffixarray/suffixarray_test.go
View file @
7944bbf2
...
...
@@ -6,7 +6,7 @@ package suffixarray
import
(
"bytes"
"regexp"
"
exp/
regexp"
"sort"
"strings"
"testing"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment