mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.4.596
Problem: Tiny build doesn't compile. (Ike Devolder) Solution: Add #ifdef.
This commit is contained in:
@@ -3530,11 +3530,13 @@ do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin)
|
|||||||
check_fname() == FAIL)
|
check_fname() == FAIL)
|
||||||
goto theend;
|
goto theend;
|
||||||
|
|
||||||
|
#ifdef FEAT_QUICKFIX
|
||||||
/* ":e foobar" when already editing "foobar" will reload the file.
|
/* ":e foobar" when already editing "foobar" will reload the file.
|
||||||
* But when 'buftype' is "nofile" there is no file to load, so don't
|
* But when 'buftype' is "nofile" there is no file to load, so don't
|
||||||
* do anything. */
|
* do anything. */
|
||||||
if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f')
|
if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f')
|
||||||
goto theend;
|
goto theend;
|
||||||
|
#endif
|
||||||
|
|
||||||
oldbuf = (flags & ECMD_OLDBUF);
|
oldbuf = (flags & ECMD_OLDBUF);
|
||||||
}
|
}
|
||||||
|
@@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
596,
|
||||||
/**/
|
/**/
|
||||||
595,
|
595,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user