Skip to content

Commit 491799b

Browse files
committed
patch 8.2.1346: small build fails
Problem: Small build fails. Solution: Add #ifdef.
1 parent f8992d4 commit 491799b

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/ex_docmd.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7276,9 +7276,10 @@ ex_copymove(exarg_T *eap)
72767276
{
72777277
long n;
72787278

7279+
#ifdef FEAT_EVAL
72797280
if (not_in_vim9(eap) == FAIL)
72807281
return;
7281-
7282+
#endif
72827283
n = get_address(eap, &eap->arg, eap->addr_type, FALSE, FALSE, FALSE, 1);
72837284
if (eap->arg == NULL) // error detected
72847285
{

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,8 @@ static char *(features[]) =
754754

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1346,
757759
/**/
758760
1345,
759761
/**/

0 commit comments

Comments
 (0)