# HG changeset patch # User Bram Moolenaar # Date 1422362003 -3600 # Node ID 6da912e32896c57227a0f297aa1d3312a653cf0a # Parent 08cbc3e11cb668b135b69d61eda656427168cbe0 updated for version 7.4.596 Problem: Tiny build doesn't compile. (Ike Devolder) Solution: Add #ifdef. diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3530,11 +3530,13 @@ do_ecmd(fnum, ffname, sfname, eap, newln check_fname() == FAIL) goto theend; +#ifdef FEAT_QUICKFIX /* ":e foobar" when already editing "foobar" will reload the file. * But when 'buftype' is "nofile" there is no file to load, so don't * do anything. */ if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f') goto theend; +#endif oldbuf = (flags & ECMD_OLDBUF); } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 596, +/**/ 595, /**/ 594,