Support displaying books without verse numbers

This commit is contained in:
Andrew Smith 2020-01-08 13:59:35 -06:00
parent 6486aea595
commit 8b77e55c69

View File

@ -178,7 +178,12 @@ function processline() {
last_book_printed = $2 last_book_printed = $2
} }
printf("%d:%d\t", $4, $5) if ($5 == "") {
printf("%s %d\t", $2, $4)
}
else {
printf("%d:%d\t", $4, $5)
}
printverse($6) printverse($6)
outputted_records++ outputted_records++
} }