Skip to content

Commit

Permalink
Some hotfixes for versification (incomplete)
Browse files Browse the repository at this point in the history
  • Loading branch information
kovzol committed Jan 29, 2025
1 parent 732c03b commit 211f43a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions statements/pbrst.y
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,15 @@ void fix_verse(char *info, int *c, int *v) {
}
if ((*c)==22) (*v)--;
} // Exodus
if (strcmp(info, "Jeremiah") == 0) {
if ((*c)==31) (*c)=38;
} // Jeremiah
if (strcmp(info, "Isaiah") == 0) {
if ((*c)==9) (*v)-=1;
} // Isaiah
if (strcmp(info, "Deuteronomy") == 0) {
if ((*c)==29) (*v)-=1;
} // Deuteronomy
}

char *versification_to_lxx(char *book, char *info, char *verse) {
Expand Down

0 comments on commit 211f43a

Please sign in to comment.