0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

Rename w_p_conceal to w_p_conc for consistency.

This commit is contained in:
Bram Moolenaar
2010-07-19 19:52:13 +02:00
parent 01a8f38fcd
commit c400cb9ca7
11 changed files with 36 additions and 28 deletions

View File

@@ -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;