diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/util.c | 2 | ||||
-rw-r--r-- | src/shared/util.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 7fa3742b4a..2e832ca384 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -5507,6 +5507,7 @@ const char *draw_special_char(DrawSpecialChar ch) { [DRAW_TRIANGULAR_BULLET] = "\342\200\243", /* ‣ */ [DRAW_BLACK_CIRCLE] = "\342\227\217", /* ● */ [DRAW_ARROW] = "\342\206\222", /* → */ + [DRAW_DASH] = "\342\200\223", /* – */ }, /* ASCII fallback */ { @@ -5517,6 +5518,7 @@ const char *draw_special_char(DrawSpecialChar ch) { [DRAW_TRIANGULAR_BULLET] = ">", [DRAW_BLACK_CIRCLE] = "*", [DRAW_ARROW] = "->", + [DRAW_DASH] = "-", } }; diff --git a/src/shared/util.h b/src/shared/util.h index 952239e7e6..7618aefad5 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -706,6 +706,7 @@ typedef enum DrawSpecialChar { DRAW_TRIANGULAR_BULLET, DRAW_BLACK_CIRCLE, DRAW_ARROW, + DRAW_DASH, _DRAW_SPECIAL_CHAR_MAX } DrawSpecialChar; |