diff src/ex_docmd.c @ 20027:23a4aef4f923 v8.2.0569

patch 8.2.0569: build failure with tiny version Commit: https://github.com/vim/vim/commit/fbda69b309ca1c9748eaac38ab85b9e3425bf834 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 13 15:06:53 2020 +0200 patch 8.2.0569: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Mon, 13 Apr 2020 15:15:04 +0200
parents c85d4e173cc9
children de756b3f4dee
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -4764,9 +4764,11 @@ ex_blast(exarg_T *eap)
     int
 ends_excmd(int c)
 {
+#ifdef FEAT_EVAL
     if (c == '#')
 	// TODO: should check for preceding white space
 	return in_vim9script();
+#endif
     return (c == NUL || c == '|' || c == '"' || c == '\n');
 }