Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
c20e024d
Commit
c20e024d
authored
Sep 20, 2010
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
godoc: default filter file name should be ""
R=rsc CC=golang-dev
https://golang.org/cl/2241043
parent
103d7566
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/cmd/godoc/godoc.go
src/cmd/godoc/godoc.go
+1
-1
No files found.
src/cmd/godoc/godoc.go
View file @
c20e024d
...
@@ -53,7 +53,7 @@ var (
...
@@ -53,7 +53,7 @@ var (
// file system roots
// file system roots
goroot
=
flag
.
String
(
"goroot"
,
runtime
.
GOROOT
(),
"Go root directory"
)
goroot
=
flag
.
String
(
"goroot"
,
runtime
.
GOROOT
(),
"Go root directory"
)
path
=
flag
.
String
(
"path"
,
""
,
"additional package directories (colon-separated)"
)
path
=
flag
.
String
(
"path"
,
""
,
"additional package directories (colon-separated)"
)
filter
=
flag
.
String
(
"filter"
,
"
godoc.dirlist
"
,
"filter file containing permitted package directory paths"
)
filter
=
flag
.
String
(
"filter"
,
""
,
"filter file containing permitted package directory paths"
)
filterMin
=
flag
.
Int
(
"filter_minutes"
,
0
,
"filter file update interval in minutes; disabled if <= 0"
)
filterMin
=
flag
.
Int
(
"filter_minutes"
,
0
,
"filter file update interval in minutes; disabled if <= 0"
)
filterDelay
delayTime
// actual filter update interval in minutes; usually filterDelay == filterMin, but filterDelay may back off exponentially
filterDelay
delayTime
// actual filter update interval in minutes; usually filterDelay == filterMin, but filterDelay may back off exponentially
...
...
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