diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-19 19:52:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-19 19:52:13 +0200 |
commit | c400cb9ca7dbd88a6c0ae678c7e04e54311d552d (patch) | |
tree | 61177f3c62264dca07df5d8a9e2947450c0082b8 /src/edit.c | |
parent | 01a8f38fcd469db0360b896cb670b889619d3752 (diff) | |
download | vim-c400cb9ca7dbd88a6c0ae678c7e04e54311d552d.zip |
Rename w_p_conceal to w_p_conc for consistency.
Diffstat (limited to 'src/edit.c')
-rw-r--r-- | src/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c index e5f6b3312..87fd5696c 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; |