commit | 6e202e52b725f7c0a77837dbb0dc0d85c1d74733 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 28 18:14:45 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 28 18:14:45 2010 +0200 |
tree | d0849dcc02621f962ad7d05fad10645e08dd46f9 | |
parent | e0021c79a542e413e6ad63403330e85b1cb3d1ae [diff] [blame] |
Fix: concealed regions didn't get redrawn correctly when moving the cursor through them.
diff --git a/src/structs.h b/src/structs.h index d959b5c..31f71d2 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -808,6 +808,10 @@ { int bs_idx; /* index of pattern */ int bs_flags; /* flags for pattern */ +#ifdef FEAT_CONCEAL + int bs_seqnr; /* stores si_seqnr */ + int bs_cchar; /* stores si_cchar */ +#endif reg_extmatch_T *bs_extmatch; /* external matches from start pattern */ } bufstate_T;