From 211f43a6f2719c578f74f99f93248553e122f3f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Kov=C3=A1cs?= Date: Wed, 29 Jan 2025 16:06:47 +0100 Subject: [PATCH] Some hotfixes for versification (incomplete) --- statements/pbrst.y | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/statements/pbrst.y b/statements/pbrst.y index e77adff..f078daa 100644 --- a/statements/pbrst.y +++ b/statements/pbrst.y @@ -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) {