diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-06 20:18:50 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-06 20:18:50 +0000 |
commit | 8dff818edfb61658b94128111234c3c074c1cadc (patch) | |
tree | ed09901efe925ec1b065c8dbd4cd94165b01cf6f /src/option.c | |
parent | 910f66f90c928da8b607ccfdc12fc33d9cb8d4a9 (diff) | |
download | vim-git-8dff818edfb61658b94128111234c3c074c1cadc.tar.gz |
updated for version 7.0c11
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/option.c b/src/option.c index 2f7e90ae2..f809a736d 100644 --- a/src/option.c +++ b/src/option.c @@ -521,7 +521,7 @@ static struct vimoption {(char_u *)0L, (char_u *)0L} #endif }, -#if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP) +#ifdef FEAT_AUTOCHDIR {"autochdir", "acd", P_BOOL|P_VI_DEF, (char_u *)&p_acd, PV_NONE, {(char_u *)FALSE, (char_u *)0L}}, @@ -7263,15 +7263,15 @@ set_bool_option(opt_idx, varp, value, opt_flags) else gui_mch_disable_beval_area(balloonEval); } +#endif -# if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP) +#ifdef FEAT_AUTOCHDIR else if ((int *)varp == &p_acd) { if (p_acd && curbuf->b_ffname != NULL && vim_chdirfile(curbuf->b_ffname) == OK) shorten_fnames(TRUE); } -# endif #endif #ifdef FEAT_DIFF |