summaryrefslogtreecommitdiff
path: root/biblio/bibtex/bibtex-x/bibtex-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'biblio/bibtex/bibtex-x/bibtex-1.c')
-rw-r--r--biblio/bibtex/bibtex-x/bibtex-1.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/biblio/bibtex/bibtex-x/bibtex-1.c b/biblio/bibtex/bibtex-x/bibtex-1.c
index 1f3619a8d7..2a86d45648 100644
--- a/biblio/bibtex/bibtex-x/bibtex-1.c
+++ b/biblio/bibtex/bibtex-x/bibtex-1.c
@@ -276,7 +276,7 @@ BEGIN
END
out_buf_length = out_buf_ptr;
unbreakable_tail = FALSE;
- while ((out_buf_length > MAX_PRINT_LINE) && ! unbreakable_tail)
+ while ((out_buf_length > Max_Print_Line) && ! unbreakable_tail)
/***************************************************************************
* WEB section number: 323
@@ -292,7 +292,7 @@ BEGIN
***************************************************************************/
BEGIN
end_ptr = out_buf_length;
- out_buf_ptr = MAX_PRINT_LINE;
+ out_buf_ptr = Max_Print_Line;
break_pt_found = FALSE;
while ((lex_class[out_buf[out_buf_ptr]] != WHITE_SPACE)
&& (out_buf_ptr >= MIN_PRINT_LINE))
@@ -313,7 +313,7 @@ BEGIN
* point, so we don't break the line (yet).
***************************************************************************/
BEGIN
- out_buf_ptr = MAX_PRINT_LINE + 1;
+ out_buf_ptr = Max_Print_Line + 1;
while (out_buf_ptr < end_ptr)
BEGIN
#ifdef UTF_8
@@ -330,7 +330,7 @@ BEGIN
case UBLOCK_LATIN_EXTENDED_C:
case UBLOCK_LATIN_EXTENDED_D:
case UBLOCK_LATIN_EXTENDED_E:
-#if defined(UBLOCK_LATIN_EXTENDED_G)
+#if defined(U_ICU_VERSION_MAJOR_NUM) && (U_ICU_VERSION_MAJOR_NUM > 69)
case UBLOCK_LATIN_EXTENDED_F:
case UBLOCK_LATIN_EXTENDED_G:
#endif
@@ -342,6 +342,9 @@ BEGIN
case UBLOCK_CYRILLIC_EXTENDED_A:
case UBLOCK_CYRILLIC_EXTENDED_B:
case UBLOCK_CYRILLIC_EXTENDED_C:
+#if defined(U_ICU_VERSION_MAJOR_NUM) && (U_ICU_VERSION_MAJOR_NUM > 71)
+ case UBLOCK_CYRILLIC_EXTENDED_D:
+#endif
case UBLOCK_HANGUL_SYLLABLES:
goto Loop1_Exit; /* break line */
break;