]> granicus.if.org Git - vim/commitdiff
patch 8.2.0569: build failure with tiny version v8.2.0569
authorBram Moolenaar <Bram@vim.org>
Mon, 13 Apr 2020 13:06:53 +0000 (15:06 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 13 Apr 2020 13:06:53 +0000 (15:06 +0200)
Problem:    Build failure with tiny version.
Solution:   Add #ifdef.

src/ex_docmd.c
src/version.c

index 047e368e573352f52f30642f9f306b762d20c245..f908ff35481491752505a4831b9f99996b1c560e 100644 (file)
@@ -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');
 }
 
index 5659e92fca0dd388928498d8cf0252daefb8f0d1..d447b7aed4f486e517aedaa425a924510d18a1db 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    569,
 /**/
     568,
 /**/