ignored characters fix for short append_string

This commit is contained in:
simon987 2020-04-30 20:15:27 -04:00
parent 38a6cde31d
commit 22e75650d4
2 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ static int text_buffer_append_string(text_buffer_t *buf, const char *str, size_t
if (len <= 4) { if (len <= 4) {
for (int i = 0; i < len; i++) { for (int i = 0; i < len; i++) {
if (((utf8_int32_t) 0xffffff80 & str[i]) == 0) { if (((utf8_int32_t) 0xffffff80 & str[i]) == 0 && SHOULD_KEEP_CHAR(str[i])) {
dyn_buffer_write_char(&buf->dyn_buffer, str[i]); dyn_buffer_write_char(&buf->dyn_buffer, str[i]);
} }
} }

2
third-party/utf8.h vendored

@ -1 +1 @@
Subproject commit b686b0c5181c2dd9f8297e6ac3692c9614b083be Subproject commit fdcacc00ff48f7d268108dfb0ec7ebc485f1eb16