summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-01-23 20:48:40 +0100
committerBram Moolenaar <Bram@vim.org>2012-01-23 20:48:40 +0100
commit33c1b198c647703e2b7ce003ecb113a68ee716da (patch)
treede7bb8adc1e0c2a1efa4bdacd0ae25161139a5ab /src
parent7474c7c3d6fdcc8b62d731f2fd679e33f20e4184 (diff)
downloadvim-git-33c1b198c647703e2b7ce003ecb113a68ee716da.tar.gz
updated for version 7.3.410v7.3.410
Problem: Compiler error for // comment. (Joachim Schmitz) Solution: Turn into /* comment */.
Diffstat (limited to 'src')
-rw-r--r--src/message.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c
index 95f626c95..872fadc66 100644
--- a/src/message.c
+++ b/src/message.c
@@ -333,7 +333,7 @@ trunc_string(s, buf, room, buflen)
}
else
{
- buf[e - 1] = NUL; // make sure it is truncated
+ buf[e - 1] = NUL; /* make sure it is truncated */
}
}
diff --git a/src/version.c b/src/version.c
index 110f14f01..9294728f7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 410,
+/**/
409,
/**/
408,