]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-237 v7.2.237
authorBram Moolenaar <Bram@vim.org>
Wed, 22 Jul 2009 11:28:11 +0000 (11:28 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 22 Jul 2009 11:28:11 +0000 (11:28 +0000)
src/os_unix.c
src/version.c

index 3aa397bf638a051bb03913a50436cfb20f5297bf..a5f033db4ff6a27ec5c8aef2dbb02bc70a6831f8 100644 (file)
@@ -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;
 }
index fc4da307b835986e12ec9627b639363478705923..5f53901ec9a7c7f276abe83aa5886df85c2dc883 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    237,
 /**/
     236,
 /**/