summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2009-06-24 09:58:32 +0000
committervimboss <devnull@localhost>2009-06-24 09:58:32 +0000
commitb9c3bd4445724fd7d1000fa9aba42d9ef6a56614 (patch)
tree1f0f0b6ee61d16f779026386e864ec4454a5181d
parent4152db85002ed57d2be5f67f98b8409438c8061f (diff)
downloadvim-b9c3bd4445724fd7d1000fa9aba42d9ef6a56614.tar.gz
updated for version 7.2-210v7.2.210v7-2-210
-rw-r--r--src/fileio.c5
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index cb839b8b..9ce41d42 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6627,7 +6627,10 @@ buf_check_timestamp(buf, focus)
mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started");
mesg2 = _("See \":help W16\" for more info.");
}
- /* Else: only timestamp changed, ignored */
+ else
+ /* Only timestamp changed, store it to avoid a warning
+ * in check_mtime() later. */
+ buf->b_mtime_read = buf->b_mtime;
}
}
}
diff --git a/src/version.c b/src/version.c
index 22d18de4..145ef2e6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 210,
+/**/
209,
/**/
208,