Skip to content

Commit fc1f201

Browse files
committed
patch 7.4.2133
Problem: Can't build with tiny features. Solution: Add #ifdef.
1 parent 31440a1 commit fc1f201

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/ex_cmds.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4092,7 +4092,9 @@ do_ecmd(
40924092
if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
40934093
== FAIL)
40944094
{
4095+
#ifdef FEAT_AUTOCMD
40954096
vim_free(new_name);
4097+
#endif
40964098
goto theend;
40974099
}
40984100
u_unchanged(curbuf);

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+
2133,
766768
/**/
767769
2132,
768770
/**/

0 commit comments

Comments
 (0)