0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

Change SKIP_GTK to SKIP_GTK2 in configure.

This commit is contained in:
Bram Moolenaar
2010-07-05 22:57:59 +02:00
parent 0af8cebc6c
commit e667c95335
6 changed files with 16 additions and 10 deletions

View File

@@ -4348,10 +4348,10 @@ win_line(wp, lnum, startrow, endrow, nochange)
#ifdef FEAT_CONCEAL
if ( wp->w_p_conceal
&& (!area_highlighting)
&& ((lnum != wp->w_cursor.lnum)
|| (curwin != wp) || (wp->w_buffer->b_p_ma == FALSE))
&& ((syntax_flags & HL_CONCEAL) != 0))
&& !area_highlighting
&& (lnum != wp->w_cursor.lnum
|| curwin != wp || wp->w_buffer->b_p_ma == FALSE)
&& (syntax_flags & HL_CONCEAL) != 0)
{
char_attr = conceal_attr;