From: Bram Moolenaar Date: Tue, 1 Apr 2008 11:12:09 +0000 (+0000) Subject: updated for version 7.1-287 X-Git-Tag: v7.1.287 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=525145642bd362b93e1dc02d44f33b0bbf70c010;p=vim updated for version 7.1-287 --- diff --git a/src/eval.c b/src/eval.c index 2a920ed8d..e008df24a 100644 --- a/src/eval.c +++ b/src/eval.c @@ -13954,6 +13954,7 @@ f_reverse(argvars, rettv) rettv->vval.v_list = l; rettv->v_type = VAR_LIST; ++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) { /* 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; for (i = 0; i < len; ++i) list_append(l, ptrs[i]); diff --git a/src/version.c b/src/version.c index ef3fc0da6..e105f140e 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 287, /**/ 286, /**/