We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b29aba commit 7d2a579Copy full SHA for 7d2a579
2 files changed
src/eval.c
@@ -6027,6 +6027,7 @@ rettv_list_alloc(typval_T *rettv)
6027
6028
rettv->vval.v_list = l;
6029
rettv->v_type = VAR_LIST;
6030
+ rettv->v_lock = 0;
6031
++l->lv_refcount;
6032
return OK;
6033
}
@@ -7277,6 +7278,7 @@ rettv_dict_alloc(typval_T *rettv)
7277
7278
7279
rettv->vval.v_dict = d;
7280
rettv->v_type = VAR_DICT;
7281
7282
++d->dv_refcount;
7283
7284
src/version.c
@@ -748,6 +748,8 @@ static char *(features[]) =
748
749
static int included_patches[] =
750
{ /* Add new patch number below this line */
751
+/**/
752
+ 1679,
753
/**/
754
1678,
755
0 commit comments