Skip to content
Snippets Groups Projects
Commit b4bfa4fe authored by rswindell's avatar rswindell
Browse files

Translate DEL (0x7F) to Unicode when USE_UNICODE_FOR_TERM_CTRL_CHARS

is defined (not defined by default).
parent 12249216
No related branches found
No related tags found
No related merge requests found
......@@ -79,8 +79,7 @@ uint32_t cp437_unicode_tbl[] =
/* 0x1D */ 0x2194,
/* 0x1E */ 0x25B2,
/* 0x1F */ 0x25BC,
/* 0x20-0x7F (1:1 with US-ASCII and CP437) */
0,
/* 0x20-0x7E (1:1 with US-ASCII and CP437) */
0,
0,
0,
......@@ -176,6 +175,7 @@ uint32_t cp437_unicode_tbl[] =
0,
0,
0,
/* 0x7F (DEL) */ UNICODE_TERM_CTRL_CHAR_CODE(0x2302),
/* 0x80 */ 0x00C7,
/* 0x81 */ 0x00FC,
/* 0x82 */ 0x00E9,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment