]> granicus.if.org Git - neomutt/commitdiff
Wide character fix from TAKIZAWA Takashi.
authorThomas Roessler <roessler@does-not-exist.org>
Mon, 28 Jan 2002 10:18:33 +0000 (10:18 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Mon, 28 Jan 2002 10:18:33 +0000 (10:18 +0000)
menu.c

diff --git a/menu.c b/menu.c
index 82b85fabe30b5a9d26c4720c0178a056535b521a..4a1c46e6e745dfc4ed2cea1aa28ce80c502ead24 100644 (file)
--- a/menu.c
+++ b/menu.c
@@ -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;