summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-12-08 21:21:18 +0000
committervimboss <devnull@localhost>2007-12-08 21:21:18 +0000
commit98a58ca1f1c1864c4bb7caeb56e5a768349a20c1 (patch)
tree4ec0aa64bc140ce93d325efe3cb6bd7581df798b
parent89c31268d2b85154d38dd591d86daa8e1d654210 (diff)
downloadvim-98a58ca1f1c1864c4bb7caeb56e5a768349a20c1.tar.gz
updated for version 7.1-172v7.1.172v7-1-172
-rw-r--r--src/ex_cmds.c3
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 3c2690a8..39ba8b52 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -2732,6 +2732,9 @@ check_overwrite(eap, buf, fname, ffname, other)
&& vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
|| (buf->b_flags & BF_READERR))
&& !p_wa
+#ifdef FEAT_QUICKFIX
+ && !bt_nofile(buf)
+#endif
&& vim_fexists(ffname))
{
if (!eap->forceit && !eap->append)
diff --git a/src/version.c b/src/version.c
index c2f78aa9..1bf84d35 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 172,
+/**/
171,
/**/
170,