From: Bram Moolenaar Date: Wed, 22 Jul 2009 11:28:11 +0000 (+0000) Subject: updated for version 7.2-237 X-Git-Tag: v7.2.237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20de1c20e61a62eb01d182d365f1889f9950c1a0;p=vim updated for version 7.2-237 --- diff --git a/src/os_unix.c b/src/os_unix.c index 3aa397bf6..a5f033db4 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 fc4da307b..5f53901ec 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 237, /**/ 236, /**/