mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.0.0159: cannot build with small features
Problem: Cannot build with small features. Solution: Check for E1170 only with FEAT_EVAL.
This commit is contained in:
@@ -2846,9 +2846,11 @@ parse_command_modifiers(
|
|||||||
{
|
{
|
||||||
if (has_cmdmod(cmod, FALSE))
|
if (has_cmdmod(cmod, FALSE))
|
||||||
*errormsg = _(e_command_modifier_without_command);
|
*errormsg = _(e_command_modifier_without_command);
|
||||||
|
#ifdef FEAT_EVAL
|
||||||
if (eap->cmd[0] == '#' && eap->cmd[1] == '{'
|
if (eap->cmd[0] == '#' && eap->cmd[1] == '{'
|
||||||
&& eap->cmd[2] != '{')
|
&& eap->cmd[2] != '{')
|
||||||
*errormsg = _(e_cannot_use_hash_curly_to_start_comment);
|
*errormsg = _(e_cannot_use_hash_curly_to_start_comment);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
|
@@ -735,6 +735,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
159,
|
||||||
/**/
|
/**/
|
||||||
158,
|
158,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -202,7 +202,11 @@ vim9_bad_comment(char_u *p)
|
|||||||
int
|
int
|
||||||
vim9_comment_start(char_u *p)
|
vim9_comment_start(char_u *p)
|
||||||
{
|
{
|
||||||
|
#ifdef FEAT_EVAL
|
||||||
return p[0] == '#' && !vim9_bad_comment(p);
|
return p[0] == '#' && !vim9_bad_comment(p);
|
||||||
|
#else
|
||||||
|
return p[0] == '#' && (p[1] != '{' || p[2] == '{');
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||||
|
Reference in New Issue
Block a user