mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.3298: build failure with small features
Problem: Build failure with small features. Solution: Add #ifdef.
This commit is contained in:
@@ -2331,7 +2331,10 @@ do_one_cmd(
|
|||||||
|| ea.cmdidx == CMD_global
|
|| ea.cmdidx == CMD_global
|
||||||
|| ea.cmdidx == CMD_vglobal
|
|| ea.cmdidx == CMD_vglobal
|
||||||
|| ea.usefilter
|
|| ea.usefilter
|
||||||
|| inside_block(&ea))
|
#ifdef FEAT_EVAL
|
||||||
|
|| inside_block(&ea)
|
||||||
|
#endif
|
||||||
|
)
|
||||||
{
|
{
|
||||||
for (p = ea.arg; *p; ++p)
|
for (p = ea.arg; *p; ++p)
|
||||||
{
|
{
|
||||||
|
@@ -755,6 +755,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 */
|
||||||
|
/**/
|
||||||
|
3298,
|
||||||
/**/
|
/**/
|
||||||
3297,
|
3297,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user