summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-06-19 18:27:18 +0000
committervimboss <devnull@localhost>2007-06-19 18:27:18 +0000
commit89a87a92423dd7c84d89174f2a0ca4109a667d5b (patch)
treec38272edb17c7720ec81e3a2831bd9748892f257
parent04c56f7888b3d25d1fce5395c673ac92ab9b286b (diff)
downloadvim-89a87a92423dd7c84d89174f2a0ca4109a667d5b.tar.gz
updated for version 7.1-011v7.1.011v7-1-011
-rw-r--r--src/main.c3
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 438cb997..fdfc2b82 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1360,8 +1360,7 @@ init_locale()
p = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
if (p != NULL && *p != NUL)
{
- STRCPY(NameBuff, p);
- STRCAT(NameBuff, "/lang");
+ vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
bindtextdomain(VIMPACKAGE, (char *)NameBuff);
}
if (mustfree)
diff --git a/src/version.c b/src/version.c
index bebd3e9e..831db0f1 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 */
/**/
+ 11,
+/**/
10,
/**/
9,