Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
main
pyicu
Commits
008fc841
Commit
008fc841
authored
Nov 16, 2022
by
Andi Vajda
Browse files
removed extra comma at end of enum symbol
parent
1e2dd878
Changes
1
Hide whitespace changes
Inline
Side-by-side
char.cpp
View file @
008fc841
...
...
@@ -1160,7 +1160,7 @@ void _init_char(PyObject *m)
INSTALL_ENUM
(
UBlockCode
,
"NO_BLOCK"
,
UBLOCK_NO_BLOCK
);
INSTALL_ENUM
(
UBlockCode
,
"BASIC_LATIN"
,
UBLOCK_BASIC_LATIN
);
INSTALL_ENUM
(
UBlockCode
,
"LATIN_1_SUPPLEMENT
,
"
,
UBLOCK_LATIN_1_SUPPLEMENT
);
INSTALL_ENUM
(
UBlockCode
,
"LATIN_1_SUPPLEMENT"
,
UBLOCK_LATIN_1_SUPPLEMENT
);
INSTALL_ENUM
(
UBlockCode
,
"LATIN_EXTENDED_A"
,
UBLOCK_LATIN_EXTENDED_A
);
INSTALL_ENUM
(
UBlockCode
,
"LATIN_EXTENDED_B"
,
UBLOCK_LATIN_EXTENDED_B
);
INSTALL_ENUM
(
UBlockCode
,
"IPA_EXTENSIONS"
,
UBLOCK_IPA_EXTENSIONS
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment