Skip to content

Commit

Permalink
Bump SOINDEX
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Dec 28, 2024
1 parent 23ccf2b commit adb0f44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions test/printproperty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion utf8proc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit adb0f44

Please sign in to comment.