Skip to content

Commit 7df0f63

Browse files
committed
patch 7.4.2261
Problem: Build fails with small features. Solution: Move "else" inside the #ifdef.
1 parent e4a3bcf commit 7df0f63

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/ex_getln.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1570,8 +1570,9 @@ getcmdline(
15701570
vim_beep(BO_ERROR);
15711571
goto cmdline_not_changed;
15721572
}
1573+
else
15731574
#endif
1574-
else if (xpc.xp_numfiles > 0)
1575+
if (xpc.xp_numfiles > 0)
15751576
{
15761577
if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
15771578
0, firstc != '@') == FAIL)

src/version.c

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

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2261,
766768
/**/
767769
2260,
768770
/**/

0 commit comments

Comments
 (0)