summaryrefslogtreecommitdiffstats
path: root/src/edit.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/edit.c
parent01a8f38fcd469db0360b896cb670b889619d3752 (diff)
Rename w_p_conceal to w_p_conc for consistency.
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c
index e5f6b3312b..87fd5696cf 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -1476,7 +1476,7 @@ ins_redraw(ready)
||
# endif
# ifdef FEAT_CONCEAL
- curwin->w_p_conceal
+ curwin->w_p_conc > 0
# endif
)
&& !equalpos(last_cursormoved, curwin->w_cursor)
@@ -1498,7 +1498,7 @@ ins_redraw(ready)
apply_autocmds(EVENT_CURSORMOVEDI, 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;