8000 Merge pull request #17 from behnam/dev · dbrgn/unicode-normalization@22f67ac · GitHub
[go: up one dir, main page]

Skip to content

Commit 22f67ac

Browse files
authored
Merge pull request unicode-rs#17 from behnam/dev
Fix is_combining_mark table data
2 parents 3898e77 + 0f11303 commit 22f67ac

File tree

4 files changed

+213
-271
lines changed

4 files changed

+213
-271
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "unicode-normalization"
4-
version = "0.1.4"
4+
version = "0.1.5"
55
authors = ["kwantam <kwantam@gmail.com>"]
66

77
homepage = "https://github.com/unicode-rs/unicode-normalization"

scripts/unicode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def comp_vfun(char):
350350
351351
""")
352352

353-
emit_table(f, "general_category_mark", combine, "&'static [(char, char)]", is_pub=False,
353+
emit_table(f, "general_category_mark", general_category_mark, "&'static [(char, char)]", is_pub=False,
354354
pfun=lambda x: "(%s,%s)" % (escape_char(x[0]), escape_char(x[1])))
355355

356356
f.write("""

0 commit comments

Comments
 (0)
0