diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-10-04 02:01:11 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-10-04 02:01:11 +0100 |
commit | 4740ecbeaef04ece4e58edc0e29a21cd5282896f (patch) | |
tree | ba76f611776380a344db073efd1e3f970bab1f40 /tty-acs.c | |
parent | ddfed259f69e7f4242bfba6095ce3928b81b21f0 (diff) | |
parent | 1b31d148c94f48932f439baa4d336e7de1035ddf (diff) | |
download | rtmux-4740ecbeaef04ece4e58edc0e29a21cd5282896f.tar.gz rtmux-4740ecbeaef04ece4e58edc0e29a21cd5282896f.tar.bz2 rtmux-4740ecbeaef04ece4e58edc0e29a21cd5282896f.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tty-acs.c')
-rw-r--r-- | tty-acs.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -22,14 +22,14 @@ #include "tmux.h" -int tty_acs_cmp(const void *, const void *); +static int tty_acs_cmp(const void *, const void *); /* Table mapping ACS entries to UTF-8. */ struct tty_acs_entry { u_char key; const char *string; }; -const struct tty_acs_entry tty_acs_table[] = { +static const struct tty_acs_entry tty_acs_table[] = { { '+', "\342\206\222" }, /* arrow pointing right */ { ',', "\342\206\220" }, /* arrow pointing left */ { '-', "\342\206\221" }, /* arrow pointing up */ @@ -64,7 +64,7 @@ const struct tty_acs_entry tty_acs_table[] = { { '~', "\302\267" } /* bullet */ }; -int +static int tty_acs_cmp(const void *key, const void *value) { const struct tty_acs_entry *entry = value; |