commit 590ecb113b06e43d8ce34ae962d697094c19f4e9
parent cf077756ee22efa87f8b4a6243b3ff0ed68d9858
Author: Wilson Gheen <wilson@wilsonrgheen.com>
Date: Sun, 29 May 2022 11:40:00 -0500
fix sprintf shortage of arguments (?)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bbl.awk b/bbl.awk
@@ -201,7 +201,7 @@ function parseref(ref, arr, re) {
}
return "exact_set"
- } else if (match(ref, sprintf("^, ?%s:%s", re["num"]))) {
+ } else if (match(ref, sprintf("^, ?%s:%s", re["num"], re["num"]))) {
# 3b
arr["chapter:verse", arr["chapter"] ":" arr["verse"]] = 1
delete arr["chapter"]