mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.1348: build failure without the eval feature
Problem: Build failure without the eval feature. Solution: Add #ifdef.
This commit is contained in:
@@ -8581,7 +8581,6 @@ eval_vars(
|
|||||||
(long)(current_sctx.sc_lnum + SOURCING_LNUM));
|
(long)(current_sctx.sc_lnum + SOURCING_LNUM));
|
||||||
result = strbuf;
|
result = strbuf;
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
|
|
||||||
case SPEC_SID:
|
case SPEC_SID:
|
||||||
if (current_sctx.sc_sid <= 0)
|
if (current_sctx.sc_sid <= 0)
|
||||||
@@ -8592,6 +8591,7 @@ eval_vars(
|
|||||||
sprintf((char *)strbuf, "<SNR>%d_", current_sctx.sc_sid);
|
sprintf((char *)strbuf, "<SNR>%d_", current_sctx.sc_sid);
|
||||||
result = strbuf;
|
result = strbuf;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef FEAT_CLIENTSERVER
|
#ifdef FEAT_CLIENTSERVER
|
||||||
case SPEC_CLIENT: // Source of last submitted input
|
case SPEC_CLIENT: // Source of last submitted input
|
||||||
|
@@ -754,6 +754,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 */
|
||||||
|
/**/
|
||||||
|
1348,
|
||||||
/**/
|
/**/
|
||||||
1347,
|
1347,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user