Skip to content

Commit adb0f44

Browse files
committed
Bump SOINDEX
1 parent 23ccf2b commit adb0f44

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ project (utf8proc VERSION 2.10.0 LANGUAGES C)
1010
# API version number (defined in utf8proc.h and above).
1111
# Be sure to also update these in Makefile and MANIFEST!
1212
set(SO_MAJOR 3)
13-
set(SO_MINOR 0)
13+
set(SO_MINOR 1)
1414
set(SO_PATCH 0)
1515

1616
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)

test/printproperty.c

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ int main(int argc, char **argv)
3434
" titlecase_mapping = %04x (seqindex %04x)\n"
3535
" casefold = %s\n"
3636
" comb_index = %d\n"
37+
" comb_length = %d\n"
38+
" comb_issecond = %d\n"
3739
" bidi_mirrored = %d\n"
3840
" comp_exclusion = %d\n"
3941
" ignorable = %d\n"
@@ -51,6 +53,8 @@ int main(int argc, char **argv)
5153
utf8proc_totitle(c), p->titlecase_seqindex,
5254
(char *) map,
5355
p->comb_index,
56+
p->comb_length,
57+
p->comb_issecond,
5458
p->bidi_mirrored,
5559
p->comp_exclusion,
5660
p->ignorable,

utf8proc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ typedef struct utf8proc_property_struct {
277277
* - `comb_length`: Number of table entries for this first character
278278
*
279279
* - `comb_is_second`: As optimization we also record whether this
280-
* characther is the second combining character in any pair. If
280+
* character is the second combining character in any pair. If
281281
* not, we can skip the table lookup.
282282
*
283283
* A table lookup starts from a given character pair. It first

0 commit comments

Comments
 (0)