diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-10-24 19:23:07 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-10-24 19:23:07 +0000 |
commit | 35a9aaab4a2171821f5a19acaa99015818daba07 (patch) | |
tree | 58dddbd986eedf3e523c8ed5285b08c1d61fdada /src/ex_cmds.c | |
parent | 009b2592f7488286f286484b7f389e36fffa4bd9 (diff) | |
download | vim-git-35a9aaab4a2171821f5a19acaa99015818daba07.tar.gz |
updated for version 7.0020v7.0020
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index b462e1f6e..7ed48b967 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3208,8 +3208,8 @@ do_ecmd(fnum, ffname, sfname, eap, newlnum, flags) workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); # endif # ifdef FEAT_NETBEANS_INTG - if (usingNetbeans) - netbeans_file_opened((char *)curbuf->b_ffname); + if (usingNetbeans & ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)) + netbeans_file_opened(curbuf); # endif } #endif |