summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2022-11-19 12:43:20 -0800
committerKevin McCarthy <kevin@8t8.us>2022-11-19 12:43:20 -0800
commit675178501d05bfc75b1d9cc3cd5bcea0c1b71e36 (patch)
treefcbd86dd173f2dfa26b111091e11030b5cac6fa2
parentf65467b09e884fa19300c04ea6728001e67fff83 (diff)
parenta60b22fe2a250f87769239b6120c2ff5de751b28 (diff)
Merge branch 'stable'
-rw-r--r--pager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pager.c b/pager.c
index 6790137f..8df571ab 100644
--- a/pager.c
+++ b/pager.c
@@ -1337,7 +1337,7 @@ static int format_line (struct line_t **lineInfo, int n, unsigned char *buf,
if (Charset_is_utf8)
{
- if (wc == 0x200B || wc == 0xFEFF)
+ if (wc == 0x200B || wc == 0x200C || wc == 0xFEFF)
{
dprint (3, (debugfile, "skip zero-width character U+%04X\n", (unsigned short)wc));
continue;