changeset 2346:b38c324bdc36 vim73

Fix: 'colorcolumn' interfered with concealed text.
author Bram Moolenaar <bram@vim.org>
date Sun, 18 Jul 2010 23:30:34 +0200
parents 12b829477c60
children 9228765d3e13
files src/screen.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -4806,7 +4806,7 @@ win_line(wp, lnum, startrow, endrow, noc
 		vcol_save_attr = char_attr;
 		char_attr = hl_combine_attr(char_attr, hl_attr(HLF_CUC));
 	    }
-	    else if (draw_color_col && vcol == *color_cols)
+	    else if (draw_color_col && VCOL_HLC == *color_cols)
 	    {
 		vcol_save_attr = char_attr;
 		char_attr = hl_combine_attr(char_attr, hl_attr(HLF_MC));