summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2008-11-30 11:15:09 +0000
committervimboss <devnull@localhost>2008-11-30 11:15:09 +0000
commit5375f3b875d6ed034a3efb6a8c865a871849907e (patch)
tree58a0fdb4221a1340c4e4f30d7bb9a6c821cfc1d9
parentf49a19f13269dfe8ca315588bdd0f9733e639c90 (diff)
downloadvim-5375f3b875d6ed034a3efb6a8c865a871849907e.tar.gz
updated for version 7.2-058v7.2.058v7-2-058
-rw-r--r--src/version.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c
index 7929ff0a..456a478a 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 */
/**/
+ 58,
+/**/
57,
/**/
56,
@@ -794,6 +796,19 @@ static int included_patches[] =
0
};
+/*
+ * Place to put a short description when adding a feature with a patch.
+ * Keep it short, e.g.,: "relative numbers", "persistent undo".
+ * Also add a comment marker to separate the lines.
+ * See the official Vim patches for the diff format: It must use a context of
+ * one line only. Use "diff -C2".
+ */
+static char *(extra_patches[]) =
+{ /* Add your patch description below this line */
+/**/
+ NULL
+};
+
int
highest_patch()
{
@@ -939,6 +954,19 @@ list_version()
}
}
+ /* Print the list of extra patch descriptions if there is at least one. */
+ if (extra_patches[0] != NULL)
+ {
+ MSG_PUTS(_("\nExtra patches: "));
+ s = "";
+ for (i = 0; extra_patches[i] != NULL; ++i)
+ {
+ MSG_PUTS(s);
+ s = ", ";
+ MSG_PUTS(extra_patches[i]);
+ }
+ }
+
#ifdef MODIFIED_BY
MSG_PUTS("\n");
MSG_PUTS(_("Modified by "));