diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-06 22:13:03 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-06 22:13:03 +0100 |
commit | da70cf30ef9c03e5645de0df6f7d44ffb6b31f58 (patch) | |
tree | 953696adc6363cff1e11a71d0dad9053a59a029e | |
parent | 48ca24d913105a14cf6d723d45f6b39e7b7b7b77 (diff) | |
download | vim-git-da70cf30ef9c03e5645de0df6f7d44ffb6b31f58.tar.gz |
patch 9.0.0159: cannot build with small featuresv9.0.0159
Problem: Cannot build with small features.
Solution: Check for E1170 only with FEAT_EVAL.
-rw-r--r-- | src/ex_docmd.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 | ||||
-rw-r--r-- | src/vim9script.c | 4 |
3 files changed, 8 insertions, 0 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index d8a724393..70c54025b 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -2846,9 +2846,11 @@ parse_command_modifiers( { if (has_cmdmod(cmod, FALSE)) *errormsg = _(e_command_modifier_without_command); +#ifdef FEAT_EVAL if (eap->cmd[0] == '#' && eap->cmd[1] == '{' && eap->cmd[2] != '{') *errormsg = _(e_cannot_use_hash_curly_to_start_comment); +#endif } return FAIL; } diff --git a/src/version.c b/src/version.c index 0a39e5d9d..813ff63e0 100644 --- a/src/version.c +++ b/src/version.c @@ -736,6 +736,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 159, +/**/ 158, /**/ 157, diff --git a/src/vim9script.c b/src/vim9script.c index e9c9b2c7d..6f8436207 100644 --- a/src/vim9script.c +++ b/src/vim9script.c @@ -202,7 +202,11 @@ vim9_bad_comment(char_u *p) int vim9_comment_start(char_u *p) { +#ifdef FEAT_EVAL return p[0] == '#' && !vim9_bad_comment(p); +#else + return p[0] == '#' && (p[1] != '{' || p[2] == '{'); +#endif } #if defined(FEAT_EVAL) || defined(PROTO) |