8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 266f882 commit b9e2d3fCopy full SHA for b9e2d3f
Modules/cjkcodecs/cjkcodecs.h
@@ -191,7 +191,7 @@ static const struct dbcs_map *mapping_list;
191
if (Py_UNICODE_IS_HIGH_SURROGATE(c)) { \
192
REQUIRE_INBUF(2) \
193
if (Py_UNICODE_IS_LOW_SURROGATE(IN2)) { \
194
- c = Py_UNICODE_JOIN_SURROGATES(c, IN2) \
+ c = Py_UNICODE_JOIN_SURROGATES(c, IN2); \
195
} \
196
}
197
#define GET_INSIZE(c) ((c) > 0xffff ? 2 : 1)
0 commit comments