aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-06-15 20:59:19 +1000
committerGravatar axel <axel@liljencrantz.se>2006-06-15 20:59:19 +1000
commit40558c2eb9fce7dd61812e89a11785782cc68fbd (patch)
tree069e635e3f597b0330513bff6320332c14498235 /reader.c
parentd677b468db0cb9fd9dce3f26e285234eb45f5946 (diff)
Fix highlighting of search matches, broken by earlier patch for underlining potential paths
darcs-hash:20060615105919-ac50b-fd54a58e3f7bdc93fd36e52891bafc7366c6e401.gz
Diffstat (limited to 'reader.c')
-rw-r--r--reader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reader.c b/reader.c
index 3f979b08..ac4d3190 100644
--- a/reader.c
+++ b/reader.c
@@ -2238,7 +2238,7 @@ static void reader_super_highlight_me_plenty( wchar_t * buff, int *color, int po
*/
if( color[start+i]>>8 == 0 )
{
- color[start+i] |= HIGHLIGHT_SEARCH_MATCH<<8;
+ color[start+i] |= HIGHLIGHT_SEARCH_MATCH<<16;
}
}
}