diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2019-05-22 13:24:02 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2019-05-22 13:24:02 +0000 |
commit | 95489e10e75c9789ffd4a9237209f3a9c1dba552 (patch) | |
tree | 075b93954a1570344a132a248cf27401a97ad853 /Build/source | |
parent | 6e8dd2ad50fedaa4c21e73fcffc99319096e097f (diff) |
bibtexu: trivial change
git-svn-id: svn://tug.org/texlive/trunk@51187 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/bibtex-x/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/bibtex-x/bibtex-3.c | 9 | ||||
-rwxr-xr-x | Build/source/texk/bibtex-x/tests/bibtexu-yannis.test | 2 |
3 files changed, 13 insertions, 2 deletions
diff --git a/Build/source/texk/bibtex-x/ChangeLog b/Build/source/texk/bibtex-x/ChangeLog index 2c657c37496..7010e710cdc 100644 --- a/Build/source/texk/bibtex-x/ChangeLog +++ b/Build/source/texk/bibtex-x/ChangeLog @@ -1,3 +1,7 @@ +2019-05-22 Hironobu Yamashita <h.y.acetaminophen@gmail.com> + + * bibtex-3.c (icu_strToUpper): React to Str_language. + 2019-05-05 Hironobu Yamashita <h.y.acetaminophen@gmail.com> * bibtexu-yannis.test, yannis.aux, yannis.bib, yannis.bbl: diff --git a/Build/source/texk/bibtex-x/bibtex-3.c b/Build/source/texk/bibtex-x/bibtex-3.c index 629e91c4914..f6ffeffe474 100644 --- a/Build/source/texk/bibtex-x/bibtex-3.c +++ b/Build/source/texk/bibtex-x/bibtex-3.c @@ -3145,7 +3145,14 @@ BEGIN BEGIN printf("3there is a error: U_ZERO_ERROR"); END - tulen=u_strToUpper(tarup,tucap, target,tarlen,NULL,&err1); + if (Flag_language) + { + tulen=u_strToUpper(tarup,tucap, target,tarlen,Str_language,&err1); + } + else + { + tulen=u_strToUpper(tarup,tucap, target,tarlen,NULL,&err1); + } if (!U_SUCCESS(err1)) BEGIN printf("4there is a error: U_ZERO_ERROR"); diff --git a/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test b/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test index 56aac9500aa..34ce90ce04e 100755 --- a/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test +++ b/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test @@ -1,5 +1,5 @@ #! /bin/sh -vx -# $Id: bibtexu-yannis.test 45809 2017-11-15 00:36:56Z karl $ +# $Id$ # Copyright 2019 Karl Berry <tex-live@tug.org> # You may freely use, modify and/or distribute this file. |