From 11348ce0963a39c118a6c2c92f420e54e39d39c3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 17 Feb 2015 12:17:14 +0100 Subject: [PATCH] updated for version 7.4.632 Problem: 7.4.592 breaks the netrw plugin, because the autocommands are skipped. Solution: Roll back the change. --- src/ex_cmds.c | 8 -------- src/version.c | 2 ++ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 897e6c39ac..84928723ef 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3530,14 +3530,6 @@ do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin) 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 index 30118efc83..64a25724bf 100644 --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 632, /**/ 631, /**/