summaryrefslogtreecommitdiffstats
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-19 19:52:13 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-19 19:52:13 +0200
commitc400cb9ca7dbd88a6c0ae678c7e04e54311d552d (patch)
tree61177f3c62264dca07df5d8a9e2947450c0082b8 /src/gui.c
parent01a8f38fcd469db0360b896cb670b889619d3752 (diff)
Rename w_p_conceal to w_p_conc for consistency.
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui.c b/src/gui.c
index 68999926f6..c899323206 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -4922,7 +4922,7 @@ gui_update_screen()
||
# endif
# ifdef FEAT_CONCEAL
- curwin->w_p_conceal
+ curwin->w_p_conc > 0
# endif
)
&& !equalpos(last_cursormoved, curwin->w_cursor))
@@ -4932,7 +4932,7 @@ gui_update_screen()
apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
# endif
# ifdef FEAT_CONCEAL
- if (curwin->w_p_conceal)
+ if (curwin->w_p_conc > 0)
{
conceal_old_cursor_line = last_cursormoved.lnum;
conceal_new_cursor_line = curwin->w_cursor.lnum;