commit | 1e624c912dff19e889c9398b56fe537952c02fef | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 11 14:08:04 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 11 14:08:04 2020 +0200 |
tree | 4bb6b505bdfd9059810c22474d076cfbf04321af | |
parent | f65927fc8d0102ef2d0fea776381caedf4c51e32 [diff] [blame] |
patch 8.2.1180: build failure in small version Problem: Build failure in small version. Solution: Add #ifdef.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 692192b..5436373 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -2750,10 +2750,11 @@ if (*p == NUL || ends_excmd(*p)) break; } +#ifdef FEAT_EVAL // Avoid that "filter(arg)" is recognized. if (in_vim9script() && !VIM_ISWHITE(*p)) break; - +#endif if (skip_only) p = skip_vimgrep_pat(p, NULL, NULL); else