comparison src/structs.h @ 2425:b5ee68272ae5 vim73

Fix: concealed regions didn't get redrawn correctly when moving the cursor through them.
author Bram Moolenaar <bram@vim.org>
date Wed, 28 Jul 2010 18:14:45 +0200
parents f579b934f51d
children 2f5b709a6470
comparison
equal deleted inserted replaced
2424:ee4e1e140117 2425:b5ee68272ae5
806 */ 806 */
807 typedef struct buf_state 807 typedef struct buf_state
808 { 808 {
809 int bs_idx; /* index of pattern */ 809 int bs_idx; /* index of pattern */
810 int bs_flags; /* flags for pattern */ 810 int bs_flags; /* flags for pattern */
811 #ifdef FEAT_CONCEAL
812 int bs_seqnr; /* stores si_seqnr */
813 int bs_cchar; /* stores si_cchar */
814 #endif
811 reg_extmatch_T *bs_extmatch; /* external matches from start pattern */ 815 reg_extmatch_T *bs_extmatch; /* external matches from start pattern */
812 } bufstate_T; 816 } bufstate_T;
813 817
814 /* 818 /*
815 * syn_state contains the syntax state stack for the start of one line. 819 * syn_state contains the syntax state stack for the start of one line.