summaryrefslogtreecommitdiff
path: root/src/basic/locale-util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-04-11 19:49:50 +0200
committerSven Eden <yamakuzure@gmx.net>2018-08-24 16:47:08 +0200
commit8d5db7532e577f4c5b4938cc551d8b6c040616d5 (patch)
tree1404372d894ba5257c449226a82f8c24730803d4 /src/basic/locale-util.c
parenta30b675e8c958eb54b1af8162a400a27ffc647f0 (diff)
locale: add ellipsis as special glyph
Diffstat (limited to 'src/basic/locale-util.c')
-rw-r--r--src/basic/locale-util.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/basic/locale-util.c b/src/basic/locale-util.c
index 01ab44d9a..9c3f757da 100644
--- a/src/basic/locale-util.c
+++ b/src/basic/locale-util.c
@@ -365,10 +365,11 @@ const char *special_glyph(SpecialGlyph code) {
[BLACK_CIRCLE] = "*",
[ARROW] = "->",
[MDASH] = "-",
+ [ELLIPSIS] = "..."
},
/* UTF-8 */
- [ true ] = {
+ [true] = {
[TREE_VERTICAL] = "\342\224\202 ", /* │ */
[TREE_BRANCH] = "\342\224\234\342\224\200", /* ├─ */
[TREE_RIGHT] = "\342\224\224\342\224\200", /* └─ */
@@ -377,6 +378,7 @@ const char *special_glyph(SpecialGlyph code) {
[BLACK_CIRCLE] = "\342\227\217", /* ● */
[ARROW] = "\342\206\222", /* → */
[MDASH] = "\342\200\223", /* – */
+ [ELLIPSIS] = "\342\200\246", /* … */
},
};