diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-06-12 22:13:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-06-12 22:13:40 +0200 |
commit | f7befa9f1db3db1863aac25e123cd8d5e8c8c35a (patch) | |
tree | 1b76af646b87e50c071906774282b08e17ef4eb4 /src/option.c | |
parent | d9758e37ee2a2aa75edfca8ddf39780b9b619dec (diff) | |
download | vim-git-f7befa9f1db3db1863aac25e123cd8d5e8c8c35a.tar.gz |
updated for version 7.3.215v7.3.215
Problem: Wrong file names in previous patch. (Toothpik)
Solution: Include the option changes.
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c index 718464951..4db302714 100644 --- a/src/option.c +++ b/src/option.c @@ -901,6 +901,13 @@ static struct vimoption {(char_u *)0L, (char_u *)0L} #endif SCRIPTID_INIT}, + {"cscoperelative", "csre", P_BOOL|P_VI_DEF|P_VIM, +#ifdef FEAT_CSCOPE + (char_u *)&p_csre, PV_NONE, +#else + (char_u *)NULL, PV_NONE, +#endif + {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT}, {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM, #ifdef FEAT_CSCOPE (char_u *)&p_cst, PV_NONE, |