File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ project (utf8proc VERSION 2.10.0 LANGUAGES C)
10
10
# API version number (defined in utf8proc.h and above).
11
11
# Be sure to also update these in Makefile and MANIFEST!
12
12
set (SO_MAJOR 3)
13
- set (SO_MINOR 0 )
13
+ set (SO_MINOR 1 )
14
14
set (SO_PATCH 0)
15
15
16
16
option (UTF8PROC_INSTALL "Enable installation of utf8proc" On )
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ int main(int argc, char **argv)
34
34
" titlecase_mapping = %04x (seqindex %04x)\n"
35
35
" casefold = %s\n"
36
36
" comb_index = %d\n"
37
+ " comb_length = %d\n"
38
+ " comb_issecond = %d\n"
37
39
" bidi_mirrored = %d\n"
38
40
" comp_exclusion = %d\n"
39
41
" ignorable = %d\n"
@@ -51,6 +53,8 @@ int main(int argc, char **argv)
51
53
utf8proc_totitle (c ), p -> titlecase_seqindex ,
52
54
(char * ) map ,
53
55
p -> comb_index ,
56
+ p -> comb_length ,
57
+ p -> comb_issecond ,
54
58
p -> bidi_mirrored ,
55
59
p -> comp_exclusion ,
56
60
p -> ignorable ,
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ typedef struct utf8proc_property_struct {
277
277
* - `comb_length`: Number of table entries for this first character
278
278
*
279
279
* - `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
281
281
* not, we can skip the table lookup.
282
282
*
283
283
* A table lookup starts from a given character pair. It first
You can’t perform that action at this time.
0 commit comments