summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-28 18:14:45 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-28 18:14:45 +0200
commit6e202e52b725f7c0a77837dbb0dc0d85c1d74733 (patch)
treed0849dcc02621f962ad7d05fad10645e08dd46f9 /src/structs.h
parente0021c79a542e413e6ad63403330e85b1cb3d1ae (diff)
downloadvim-git-6e202e52b725f7c0a77837dbb0dc0d85c1d74733.tar.gz
Fix: concealed regions didn't get redrawn correctly when moving the cursor
through them.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index d959b5c09..31f71d23e 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -808,6 +808,10 @@ typedef struct buf_state
{
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;