summaryrefslogtreecommitdiffstats
path: root/menu.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-12-13 12:10:59 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-12-13 12:10:59 +0000
commitfc0708e24a8d552a3e404a4cca4a26ffd285f6c0 (patch)
treeabbcaaf18a170d9bddd423d42e2c47a67e6c3c0c /menu.c
parentc712b189b749b5552b86a806f229cad92d1bb214 (diff)
Threading updates, from Daniel Eisenbud.
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c22
1 files changed, 19 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 70cfd780..82b85fab 100644
--- a/menu.c
+++ b/menu.c
@@ -88,6 +88,22 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color)
else
addch (ACS_VLINE);
break;
+ case M_TREE_TTEE:
+ if (option (OPTASCIICHARS))
+ addch ('-');
+ else if (Charset_is_utf8)
+ addstr ("\342\224\200"); /* FIXME: this is WACS_HLINE but should be WACS_TTEE */
+ else
+ addch (ACS_TTEE);
+ break;
+ case M_TREE_BTEE:
+ if (option (OPTASCIICHARS))
+ addch ('-');
+ else if (Charset_is_utf8)
+ addstr ("\342\224\200"); /* FIXME: this is WACS_HLINE but should be WACS_BTEE */
+ else
+ addch (ACS_BTEE);
+ break;
case M_TREE_SPACE:
addch (' ');
break;
@@ -100,12 +116,12 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color)
case M_TREE_HIDDEN:
addch ('&');
break;
- case M_TREE_MISSING:
- addch ('?');
- break;
case M_TREE_EQUALS:
addch ('=');
break;
+ case M_TREE_MISSING:
+ addch ('?');
+ break;
}
s++, n--;
}