mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.2-304
This commit is contained in:
@@ -5597,7 +5597,10 @@ x11_export_final_selection()
|
|||||||
vc.vc_type = CONV_NONE;
|
vc.vc_type = CONV_NONE;
|
||||||
if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
|
if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
|
||||||
{
|
{
|
||||||
conv_str = string_convert(&vc, str, (int*)&len);
|
int intlen = len;
|
||||||
|
|
||||||
|
conv_str = string_convert(&vc, str, &intlen);
|
||||||
|
len = intlen;
|
||||||
if (conv_str != NULL)
|
if (conv_str != NULL)
|
||||||
{
|
{
|
||||||
vim_free(str);
|
vim_free(str);
|
||||||
|
@@ -681,6 +681,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
304,
|
||||||
/**/
|
/**/
|
||||||
303,
|
303,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user