Skip to content

Commit 791b13b

Browse files
brammooldouglaskayama
authored andcommitted
updated for version 7.4.596
Problem: Tiny build doesn't compile. (Ike Devolder) Solution: Add #ifdef.
1 parent 1e4a318 commit 791b13b

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
@@ -3530,11 +3530,13 @@ do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin)
35303530
check_fname() == FAIL)
35313531
goto theend;
35323532

3533+
#ifdef FEAT_QUICKFIX
35333534
/* ":e foobar" when already editing "foobar" will reload the file.
35343535
* But when 'buftype' is "nofile" there is no file to load, so don't
35353536
* do anything. */
35363537
if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f')
35373538
goto theend;
3539+
#endif
35383540

35393541
oldbuf = (flags & ECMD_OLDBUF);
35403542
}

src/version.c

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

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
596,
744746
/**/
745747
595,
746748
/**/

0 commit comments

Comments
 (0)