Copied from Debian. diff --git a/source/common/ucnv_io.cpp b/source/common/ucnv_io.cpp index 5dd35d8..4424664 100644 --- a/source/common/ucnv_io.cpp +++ b/source/common/ucnv_io.cpp @@ -744,7 +744,7 @@ ucnv_io_getConverterName(const char *alias, UBool *containsOption, UErrorCode *p * the name begins with 'x-'. If it does, strip it off and try * again. This behaviour is similar to how ICU4J does it. */ - if (aliasTmp[0] == 'x' || aliasTmp[1] == '-') { + if (aliasTmp[0] == 'x' && aliasTmp[1] == '-') { aliasTmp = aliasTmp+2; } else { break; 00f954713b195100d0dc5febd3f9f6'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/store-database.scm
AgeCommit message (Expand)Author
2018-07-20database: Reset timestamps to one second after the Epoch....Ludovic Courtès
2018-06-14store: Remove 'register-path'....Ludovic Courtès
2018-06-14database: 'sqlite-register' takes a database, not a file name....Ludovic Courtès
2018-06-14database: Fail registration when encountering unregistered references....Ludovic Courtès
2018-06-14database: 'with-database' can now initialize new databases....Ludovic Courtès
2018-06-01Add (gnu store database)....Caleb Ristvedt