aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-30 19:11:04 +1000
committerDavid Walter Seikel2014-01-30 19:11:04 +1000
commit5e70ab849a4ce17eeb8a95fcc7eef383a62aa4bd (patch)
treea8ee41faf69816347d6ebe329268d7711a8bf226
parentOops, typo. (diff)
downloadboxes-5e70ab849a4ce17eeb8a95fcc7eef383a62aa4bd.zip
boxes-5e70ab849a4ce17eeb8a95fcc7eef383a62aa4bd.tar.gz
boxes-5e70ab849a4ce17eeb8a95fcc7eef383a62aa4bd.tar.bz2
boxes-5e70ab849a4ce17eeb8a95fcc7eef383a62aa4bd.tar.xz
Make the border data static.
-rw-r--r--boxes.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/boxes.c b/boxes.c
index 64d16a9..0923cab 100644
--- a/boxes.c
+++ b/boxes.c
@@ -296,8 +296,7 @@ sized morsels?
296*/ 296*/
297 297
298 298
299 299static char *borderChars[][6] =
300char *borderChars[][6] =
301{ 300{
302 {"-", "|", "+", "+", "+", "+"}, // "stick" characters. 301 {"-", "|", "+", "+", "+", "+"}, // "stick" characters.
303 {"\xE2\x94\x80", "\xE2\x94\x82", "\xE2\x94\x8C", "\xE2\x94\x90", "\xE2\x94\x94", "\xE2\x94\x98"}, // UTF-8 302 {"\xE2\x94\x80", "\xE2\x94\x82", "\xE2\x94\x8C", "\xE2\x94\x90", "\xE2\x94\x94", "\xE2\x94\x98"}, // UTF-8
@@ -305,7 +304,7 @@ char *borderChars[][6] =
305 {"\xC4", "\xB3", "\xDA", "\xBF", "\xC0", "\xD9"} // DOS 304 {"\xC4", "\xB3", "\xDA", "\xBF", "\xC0", "\xD9"} // DOS
306}; 305};
307 306
308char *borderCharsCurrent[][6] = 307static char *borderCharsCurrent[][6] =
309{ 308{
310 {"=", "#", "+", "+", "+", "+"}, // "stick" characters. 309 {"=", "#", "+", "+", "+", "+"}, // "stick" characters.
311 {"\xE2\x95\x90", "\xE2\x95\x91", "\xE2\x95\x94", "\xE2\x95\x97", "\xE2\x95\x9A", "\xE2\x95\x9D"}, // UTF-8 310 {"\xE2\x95\x90", "\xE2\x95\x91", "\xE2\x95\x94", "\xE2\x95\x97", "\xE2\x95\x9A", "\xE2\x95\x9D"}, // UTF-8