mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.1-287
This commit is contained in:
@@ -13954,6 +13954,7 @@ f_reverse(argvars, rettv)
|
|||||||
rettv->vval.v_list = l;
|
rettv->vval.v_list = l;
|
||||||
rettv->v_type = VAR_LIST;
|
rettv->v_type = VAR_LIST;
|
||||||
++l->lv_refcount;
|
++l->lv_refcount;
|
||||||
|
l->lv_idx = l->lv_len - l->lv_idx - 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -15202,7 +15203,7 @@ f_sort(argvars, rettv)
|
|||||||
if (!item_compare_func_err)
|
if (!item_compare_func_err)
|
||||||
{
|
{
|
||||||
/* Clear the List and append the items in the sorted order. */
|
/* Clear the List and append the items in the sorted order. */
|
||||||
l->lv_first = l->lv_last = NULL;
|
l->lv_first = l->lv_last = l->lv_idx_item = NULL;
|
||||||
l->lv_len = 0;
|
l->lv_len = 0;
|
||||||
for (i = 0; i < len; ++i)
|
for (i = 0; i < len; ++i)
|
||||||
list_append(l, ptrs[i]);
|
list_append(l, ptrs[i]);
|
||||||
|
@@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
287,
|
||||||
/**/
|
/**/
|
||||||
286,
|
286,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user