diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-06-27 19:02:52 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-06-27 19:02:52 +0200 |
commit | 1d1ce613cdc74721499660b1d8911de164e2862d (patch) | |
tree | 0405fa994373f498edf7fb831805db428afcda37 /src/evalfunc.c | |
parent | 17d868b8b268c9b9670421039d1a772341937add (diff) | |
download | vim-git-1d1ce613cdc74721499660b1d8911de164e2862d.tar.gz |
patch 8.2.3067: building fails with Athenav8.2.3067
Problem: Building fails with Athena. (Elimar Riesebieter)
Solution: Adjust #ifdefs and add the 'drop_file' feature.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r-- | src/evalfunc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c index 2539515bc..d3b2cde65 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -4578,6 +4578,13 @@ f_has(typval_T *argvars, typval_T *rettv) 0 #endif }, + {"drop_file", +#ifdef HAVE_DROP_FILE + 1 +#else + 0 +#endif + }, {"emacs_tags", #ifdef FEAT_EMACS_TAGS 1 |