aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.cpp
diff options
context:
space:
mode:
authorGravatar Julian Aron Prenner <julian@linux4you.it>2014-01-15 15:59:13 +0100
committerGravatar Julian Aron Prenner <julian@linux4you.it>2014-01-15 15:59:13 +0100
commit21e96152438db7fff7cf91aa3a294439d0f5a46b (patch)
tree4fa453e31fd962847dfe4b2fa246de0129c87d49 /reader.cpp
parent9e27ba51096a20fb6910ea6d720be5ebcbe9f98d (diff)
Remove unused #defines
Diffstat (limited to 'reader.cpp')
-rw-r--r--reader.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/reader.cpp b/reader.cpp
index 42469897..b9e6e4d4 100644
--- a/reader.cpp
+++ b/reader.cpp
@@ -173,13 +173,6 @@ commence.
History search mode. This value means we are searching forwards.
*/
#define SEARCH_FORWARD 1
-/**
- The color used to display an active selection
- */
-#define FISH_SELECTION_COLOR_VAR L"fish-selection-color"
-
-/** The color used if the variable above is not set */
-#define DEFAULT_SELECTION_COLOR L"gray"
/* Any time the contents of a buffer changes, we update the generation count. This allows for our background highlighting thread to notice it and skip doing work that it would otherwise have to do. This variable should really be of some kind of interlocked or atomic type that guarantees we're not reading stale cache values. With C++11 we should use atomics, but until then volatile should work as well, at least on x86.*/
static volatile unsigned int s_generation_count;