diff src/ex_docmd.c @ 21518:0b448762ebbd v8.2.1309

patch 8.2.1309: build failure with tiny version Commit: https://github.com/vim/vim/commit/461f21242a8fc7f2fe9d1c723741eeda45f0ac72 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 28 20:25:47 2020 +0200 patch 8.2.1309: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Tue, 28 Jul 2020 20:30:05 +0200
parents c7b2ce90c2de
children a7afee13873d
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -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)
     {