This commit is contained in:
Alex Yatskov 2015-08-19 17:34:01 +09:00
parent 10bc15d418
commit 9bba261e53

View File

@ -106,6 +106,7 @@ func (v *vimDoc) buildHelpTag(text []byte) []byte {
func (v *vimDoc) buildChapters(h *heading) []byte {
index := -1
{
for i, curr := range v.headings {
if curr == h {
index = i
@ -116,6 +117,7 @@ func (v *vimDoc) buildChapters(h *heading) []byte {
if index < 0 {
log.Fatal("heading not found")
}
}
var chapters []int
{