diff options
| author | varkor <github@varkor.com> | 2018-04-12 11:39:18 +0100 |
|---|---|---|
| committer | varkor <github@varkor.com> | 2018-05-21 18:57:54 +0100 |
| commit | 4694d20170e1a67f8a801c1f6dda11473d6fef77 (patch) | |
| tree | fcb2198b890657cdc7c7a7a26177eb69f07f4ee6 /src/libcore/unicode | |
| parent | b72faf5795681352b5fba83dce91ee24c22e71c8 (diff) | |
| download | rust-4694d20170e1a67f8a801c1f6dda11473d6fef77.tar.gz rust-4694d20170e1a67f8a801c1f6dda11473d6fef77.zip | |
Escape combining characters in escape_debug
Diffstat (limited to 'src/libcore/unicode')
| -rwxr-xr-x | src/libcore/unicode/unicode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/unicode/unicode.py b/src/libcore/unicode/unicode.py index d24b4eb4ce4..5b3c181ea9b 100755 --- a/src/libcore/unicode/unicode.py +++ b/src/libcore/unicode/unicode.py @@ -496,7 +496,7 @@ pub const UNICODE_VERSION: UnicodeVersion = UnicodeVersion { ["Full_Composition_Exclusion"]) # category tables - for (name, cat, pfuns) in ("general_category", gencats, ["N", "Cc"]), \ + for (name, cat, pfuns) in ("general_category", gencats, ["N", "Cc", "Mn"]), \ ("derived_property", derived, want_derived), \ ("property", props, ["White_Space", "Pattern_White_Space"]): emit_property_module(rf, name, cat, pfuns) |
