0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.1309: build failure with tiny version

Problem:    Build failure with tiny version.
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar
2020-07-28 20:25:47 +02:00
parent ae616494d7
commit 461f21242a
3 changed files with 8 additions and 2 deletions

View File

@@ -5686,8 +5686,10 @@ ex_stop(exarg_T *eap)
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)
{