summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-07-22 11:28:11 +0000
committerBram Moolenaar <Bram@vim.org>2009-07-22 11:28:11 +0000
commit20de1c20e61a62eb01d182d365f1889f9950c1a0 (patch)
treea638b6426928b7dceb348ba04474aa9c8e70a569
parent996b6d86cc6cb108f6a48c474dd7116dccb5f4f9 (diff)
updated for version 7.2-237v7.2.237
-rw-r--r--src/os_unix.c8
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 4 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 3aa397bf63..a5f033db4f 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -1734,9 +1734,9 @@ get_x11_icon(test_only)
if (oldicon == NULL && !test_only)
{
if (STRNCMP(T_NAME, "builtin_", 8) == 0)
- oldicon = T_NAME + 8;
+ oldicon = vim_strsave(T_NAME + 8);
else
- oldicon = T_NAME;
+ oldicon = vim_strsave(T_NAME);
}
return retval;
@@ -1939,9 +1939,9 @@ get_x11_icon(test_only)
if (!test_only)
{
if (STRNCMP(T_NAME, "builtin_", 8) == 0)
- oldicon = T_NAME + 8;
+ oldicon = vim_strsave(T_NAME + 8);
else
- oldicon = T_NAME;
+ oldicon = vim_strsave(T_NAME);
}
return FALSE;
}
diff --git a/src/version.c b/src/version.c
index fc4da307b8..5f53901ec9 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 */
/**/
+ 237,
+/**/
236,
/**/
235,