summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-22 21:25:37 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-22 21:25:37 +0000
commitd1f56e68f1315687ff5b913e2577f11b0b620573 (patch)
treeadbac0a00c07ee933058543eb3f251a83e707624 /src/structs.h
parent238a564935abe36832b267f32b5487556c640d00 (diff)
downloadvim-git-d1f56e68f1315687ff5b913e2577f11b0b620573.tar.gz
updated for version 7.0204v7.0204
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 98d7ea912..4d1928e89 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1324,14 +1324,17 @@ struct file_buffer
char_u *b_p_inc; /* 'include' */
# ifdef FEAT_EVAL
char_u *b_p_inex; /* 'includeexpr' */
+ long_u b_p_inex_flags; /* flags for 'includeexpr' */
# endif
#endif
#if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
char_u *b_p_inde; /* 'indentexpr' */
+ long_u b_p_inde_flags; /* flags for 'indentexpr' */
char_u *b_p_indk; /* 'indentkeys' */
#endif
#if defined(FEAT_EVAL)
char_u *b_p_fex; /* 'formatexpr' */
+ long_u b_p_fex_flags; /* flags for 'formatexpr' */
#endif
#ifdef FEAT_CRYPT
char_u *b_p_key; /* 'key' */
@@ -1826,6 +1829,15 @@ struct window_S
winopt_T w_onebuf_opt;
winopt_T w_allbuf_opt;
+ /* A few options have local flags for P_INSECURE. */
+#ifdef FEAT_STL_OPT
+ long_u w_p_stl_flags; /* flags for 'statusline' */
+#endif
+#ifdef FEAT_EVAL
+ long_u w_p_fde_flags; /* flags for 'foldexpr' */
+ long_u w_p_fdt_flags; /* flags for 'foldtext' */
+#endif
+
/* transform a pointer to a "onebuf" option into a "allbuf" option */
#define GLOBAL_WO(p) ((char *)p + sizeof(winopt_T))