changeset 6612:cd7b5bbe4952 v7.4.632

updated for version 7.4.632 Problem: 7.4.592 breaks the netrw plugin, because the autocommands are skipped. Solution: Roll back the change.
author Bram Moolenaar <bram@vim.org>
date Tue, 17 Feb 2015 12:17:14 +0100
parents 812f85d8e5e1
children c8834cf86599
files src/ex_cmds.c src/version.c
diffstat 2 files changed, 2 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -3530,14 +3530,6 @@ 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);
     }
 
--- 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 */
 /**/
+    632,
+/**/
     631,
 /**/
     630,