remove unneeded semicolons

This commit is contained in:
Tim Cooper 2018-08-13 16:25:41 -03:00
parent 1ab8fb29a5
commit 8bd831790f

12
kjv.awk
View File

@ -96,15 +96,15 @@ function parseref(ref, arr) {
return "exact"
} else if (match(ref, "^,[1-9]+[0-9]*")) {
# 3a
arr["verse", arr["verse"]] = 1;
delete arr["verse"];
arr["verse", arr["verse"]] = 1
delete arr["verse"]
do {
arr["verse", substr(ref, 2, RLENGTH - 1)] = 1;
ref = substr(ref, RLENGTH + 1);
} while (match(ref, "^,[1-9]+[0-9]*"));
arr["verse", substr(ref, 2, RLENGTH - 1)] = 1
ref = substr(ref, RLENGTH + 1)
} while (match(ref, "^,[1-9]+[0-9]*"))
if (ref != "") {
return "unknown";
return "unknown"
}
return "exact_set"