diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-25 18:12:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-25 18:12:06 +0100 |
commit | 2bd9dbc19fc67395cfa1226dda7326071ab22464 (patch) | |
tree | 31448e8eb576d7580627724ad62b42e6b793dfc1 /src/evalfunc.c | |
parent | 520f6ef60a59f7b5f3da9199999d13dbe817d3ce (diff) | |
download | vim-git-2bd9dbc19fc67395cfa1226dda7326071ab22464.tar.gz |
patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny versionv9.0.0270
Problem: Some values of 'path' and 'tags' do not work in the tiny version.
Solution: Graduate the +path_extra feature.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r-- | src/evalfunc.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c index 6502b58b2..b3084f335 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -5954,13 +5954,7 @@ f_has(typval_T *argvars, typval_T *rettv) 0 #endif }, - {"path_extra", -#ifdef FEAT_PATH_EXTRA - 1 -#else - 0 -#endif - }, + {"path_extra", 1}, {"perl", #if defined(FEAT_PERL) && !defined(DYNAMIC_PERL) 1 |