File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1561,14 +1561,15 @@ luaV_setref (lua_State *L)
15611561 {
15621562 tv .v_type = VAR_LIST ;
15631563 tv .vval .v_list = (list_T * ) lua_touserdata (L , 4 ); /* key */
1564+ abort = set_ref_in_item (& tv , copyID , NULL , NULL );
15641565 }
15651566 else if (lua_rawequal (L , -1 , 3 )) /* dict? */
15661567 {
15671568 tv .v_type = VAR_DICT ;
15681569 tv .vval .v_dict = (dict_T * ) lua_touserdata (L , 4 ); /* key */
1570+ abort = set_ref_in_item (& tv , copyID , NULL , NULL );
15691571 }
15701572 lua_pop (L , 2 ); /* metatable and value */
1571- abort = set_ref_in_item (& tv , copyID , NULL , NULL );
15721573 }
15731574 lua_pushinteger (L , abort );
15741575 return 1 ;
Original file line number Diff line number Diff line change @@ -741,6 +741,8 @@ static char *(features[]) =
741741
742742static int included_patches [] =
743743{ /* Add new patch number below this line */
744+ /**/
745+ 954 ,
744746/**/
745747 953 ,
746748/**/
You can’t perform that action at this time.
0 commit comments