diff options
author | Thomas Roessler <roessler@does-not-exist.org> | 2002-01-28 10:18:33 +0000 |
---|---|---|
committer | Thomas Roessler <roessler@does-not-exist.org> | 2002-01-28 10:18:33 +0000 |
commit | 18a2a8e9cde82b7d48202217c4a63d5fddf66659 (patch) | |
tree | 4f07833aae0b681322bbcca9b31d61044c3499de /menu.c | |
parent | 2a6f71af8fbe22624d0db37b82899f40a0381b3f (diff) |
Wide character fix from TAKIZAWA Takashi.
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -92,7 +92,7 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color) if (option (OPTASCIICHARS)) addch ('-'); else if (Charset_is_utf8) - addstr ("\342\224\200"); /* FIXME: this is WACS_HLINE but should be WACS_TTEE */ + addstr ("\342\224\254"); /* WACS_TTEE */ else addch (ACS_TTEE); break; @@ -100,7 +100,7 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color) if (option (OPTASCIICHARS)) addch ('-'); else if (Charset_is_utf8) - addstr ("\342\224\200"); /* FIXME: this is WACS_HLINE but should be WACS_BTEE */ + addstr ("\342\224\264"); /* WACS_BTEE */ else addch (ACS_BTEE); break; |