Commit f927d9c1 authored by Robert Griesemer's avatar Robert Griesemer

partial build fix: add missing argument to NewPackageDoc

R=r
CC=golang-dev
https://golang.org/cl/5489112
parent fcd877ea
...@@ -98,7 +98,7 @@ func packageComment(pkg, pkgpath string) (info string, err error) { ...@@ -98,7 +98,7 @@ func packageComment(pkg, pkgpath string) (info string, err error) {
if name == "main" { if name == "main" {
continue continue
} }
pdoc := doc.NewPackageDoc(pkgs[name], pkg) pdoc := doc.NewPackageDoc(pkgs[name], pkg, false)
if pdoc.Doc == "" { if pdoc.Doc == "" {
continue continue
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment