diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-10 13:41:14 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-10 13:41:14 +0200 |
commit | 77c604d3ffaaa0e3e9c572e820aa68fa8b2d7492 (patch) | |
tree | 124424b6df8f81f2205a018447dcb13065962a7e /src/eval.c | |
parent | 6c4b646d84836ac1adf881cf325f580ceb8ab7f6 (diff) | |
download | vim-git-77c604d3ffaaa0e3e9c572e820aa68fa8b2d7492.tar.gz |
updated for version 7.3.593v7.3.593
Problem: No easy way to decide if b:browsefilter will work.
Solution: Add the browsefilter feature.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index b2ab0adf0..5fc32e21d 100644 --- a/src/eval.c +++ b/src/eval.c @@ -12044,6 +12044,11 @@ f_has(argvars, rettv) "all_builtin_terms", # endif #endif +#if defined(FEAT_BROWSE) && (defined(USE_FILE_CHOOSER) \ + || defined(FEAT_GUI_W32) \ + || defined(FEAT_GUI_MOTIF)) + "browsefilter", +#endif #ifdef FEAT_BYTEOFF "byte_offset", #endif |