title lines are now displayed

This commit is contained in:
Kovid Goyal 2023-03-19 20:44:39 +05:30
parent 5d8b5ab720
commit ef7f13d893
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
4 changed files with 34 additions and 9 deletions

View file

@ -331,7 +331,7 @@ func diff(jobs []diff_job, context_count int) (ans map[string]*Patch, err error)
err error
patch *Patch
}
results := make(chan result)
results := make(chan result, len(jobs))
ctx.Parallel(0, len(jobs), func(nums <-chan int) {
for i := range nums {
job := jobs[i]