aboutsummaryrefslogtreecommitdiffhomepage
path: root/output.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-11-01 13:57:21 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-11-01 13:57:21 -0700
commit851f0bcfb36ee820d09b5b12e3ec06c961a51529 (patch)
tree5f71955889e2c8270d66efa41fe0f04e39607540 /output.cpp
parentd9d9fa512dec6930e47f2b53cfb2948653f25720 (diff)
Remove some more dead code
Diffstat (limited to 'output.cpp')
-rw-r--r--output.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/output.cpp b/output.cpp
index d5aefc16..f6fb9fa9 100644
--- a/output.cpp
+++ b/output.cpp
@@ -56,45 +56,6 @@
static int writeb_internal(char c);
-/**
- Names of different colors.
- */
-static const wchar_t *col[]=
-{
- L"black",
- L"red",
- L"green",
- L"brown",
- L"yellow",
- L"blue",
- L"magenta",
- L"purple",
- L"cyan",
- L"white",
- L"normal"
-}
-;
-
-/**
- Mapping from color name (the 'col' array) to color index as used in
- ANSI color terminals, and also the fish_color_* constants defined
- in highlight.h. Non-ANSI terminals will display the wrong colors,
- since they use a different mapping.
- */
-static const int col_idx[]=
-{
- 0,
- 1,
- 2,
- 3,
- 3,
- 4,
- 5,
- 5,
- 6,
- 7,
- FISH_COLOR_NORMAL,
-};
/**
The function used for output