mirror of https://github.com/golang/go.git
godoc: don't print spurious suggestion when running "go doc foo"
Fixes #3041. R=rsc CC=golang-dev https://golang.org/cl/5671087
This commit is contained in:
parent
f7ce57b1c8
commit
6cdf0a1eab
|
|
@ -417,11 +417,13 @@ func main() {
|
|||
info = pkgHandler.getPageInfo(abspath, relpath, "", mode)
|
||||
}
|
||||
|
||||
// second, try as command
|
||||
// second, try as command unless the path is absolute
|
||||
// (the go command invokes godoc w/ absolute paths; don't override)
|
||||
var cinfo PageInfo
|
||||
if !filepath.IsAbs(path) {
|
||||
abspath = absolutePath(path, cmdHandler.fsRoot)
|
||||
cinfo = cmdHandler.getPageInfo(abspath, relpath, "", mode)
|
||||
}
|
||||
cinfo := cmdHandler.getPageInfo(abspath, relpath, "", mode)
|
||||
|
||||
// determine what to use
|
||||
if info.IsEmpty() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue