diff 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
line wrap: on
line diff
--- 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;