diff options
Diffstat (limited to 'Src/utils.c')
-rw-r--r-- | Src/utils.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c index 0e7a7d2bb..ea2d17149 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -514,10 +514,12 @@ wcs_nicechar(wchar_t c, size_t *widthp, char **swidep) sprintf(buf, "\\U%.8x", (unsigned int)c); if (widthp) *widthp = 10; - } else { + } else if (c >= 0x100) { sprintf(buf, "\\u%.4x", (unsigned int)c); if (widthp) *widthp = 6; + } else { + return nicechar((int)c); } if (swidep) *swidep = buf + *widthp; |