From f02e43ede4a9cea9f59ae62f6945f2f97602ab6a Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sat, 6 Jul 2019 09:12:50 +0000 Subject: [PATCH] ESC (0x1b) is a terminal control char, don't translate to/from UTF-8 by default --- src/encode/cp437_unicode_tbl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/encode/cp437_unicode_tbl.c b/src/encode/cp437_unicode_tbl.c index f98c7454d0..ab2d708ee5 100644 --- a/src/encode/cp437_unicode_tbl.c +++ b/src/encode/cp437_unicode_tbl.c @@ -74,7 +74,7 @@ uint32_t cp437_unicode_tbl[] = /* 0x18 */ 0x2191, /* 0x19 */ 0x2193, /* 0x1A */ 0x2192, - /* 0x1B */ 0x2190, + /* 0x1B '\e' */ UNICODE_TERM_CTRL_CHAR_CODE(0x2190), /* 0x1C */ 0x221F, /* 0x1D */ 0x2194, /* 0x1E */ 0x25B2, -- GitLab