Mercurial > vim
diff src/gui.c @ 2348:8878a9f8db87 vim73
Rename w_p_conceal to w_p_conc for consistency.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 19 Jul 2010 19:52:13 +0200 |
parents | da6ec32d8d8f |
children | 85b7dc8da5eb |
line wrap: on
line diff
--- 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;