From: Erik Schnetter Date: Sat, 28 Dec 2024 19:40:44 +0000 (-0500) Subject: Bump SOINDEX X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2~1^2~3^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=adb0f44c0cfe3b745f8fe2769fa48a3c14cd1861;p=utf8proc.git Bump SOINDEX --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 645c472..157aecb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ project (utf8proc VERSION 2.10.0 LANGUAGES C) # API version number (defined in utf8proc.h and above). # Be sure to also update these in Makefile and MANIFEST! set(SO_MAJOR 3) -set(SO_MINOR 0) +set(SO_MINOR 1) set(SO_PATCH 0) option(UTF8PROC_INSTALL "Enable installation of utf8proc" On) diff --git a/test/printproperty.c b/test/printproperty.c index 8994935..13f3115 100644 --- a/test/printproperty.c +++ b/test/printproperty.c @@ -34,6 +34,8 @@ int main(int argc, char **argv) " titlecase_mapping = %04x (seqindex %04x)\n" " casefold = %s\n" " comb_index = %d\n" + " comb_length = %d\n" + " comb_issecond = %d\n" " bidi_mirrored = %d\n" " comp_exclusion = %d\n" " ignorable = %d\n" @@ -51,6 +53,8 @@ int main(int argc, char **argv) utf8proc_totitle(c), p->titlecase_seqindex, (char *) map, p->comb_index, + p->comb_length, + p->comb_issecond, p->bidi_mirrored, p->comp_exclusion, p->ignorable, diff --git a/utf8proc.h b/utf8proc.h index a16f41b..a21b6bb 100644 --- a/utf8proc.h +++ b/utf8proc.h @@ -277,7 +277,7 @@ typedef struct utf8proc_property_struct { * - `comb_length`: Number of table entries for this first character * * - `comb_is_second`: As optimization we also record whether this - * characther is the second combining character in any pair. If + * character is the second combining character in any pair. If * not, we can skip the table lookup. * * A table lookup starts from a given character pair. It first