From 11717bb0a1275f1e270396aeb1df92d973d4d068 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 8 Dec 2007 21:21:18 +0000 Subject: [PATCH] updated for version 7.1-172 --- src/ex_cmds.c | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 3c2690a84..39ba8b528 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 c2f78aa9b..1bf84d35b 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 172, /**/ 171, /**/ -- 2.50.1