commit | 461f21242a8fc7f2fe9d1c723741eeda45f0ac72 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 28 20:25:47 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 28 20:25:47 2020 +0200 |
tree | d49042167345757286d723bc05cadae47fe3d624 | |
parent | ae616494d77e9930da703d65d12ac0abf6dc425f [diff] [blame] |
patch 8.2.1309: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index fe65410..6a2e91c 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -5686,8 +5686,10 @@ static void ex_exit(exarg_T *eap) { +#ifdef FEAT_EVAL if (not_in_vim9(eap) == FAIL) return; +#endif #ifdef FEAT_CMDWIN if (cmdwin_type != 0) {