File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1517,7 +1517,7 @@ luaV_luaeval (lua_State *L)
15171517 return 0 ;
15181518 }
15191519 luaV_totypval (L , -1 , rettv );
1520- return 0 ;
1520+ return 1 ;
15211521}
15221522
15231523 static int
@@ -1530,7 +1530,8 @@ luaV_setref (lua_State *L)
15301530 luaV_getfield (L , LUAVIM_LIST );
15311531 luaV_getfield (L , LUAVIM_DICT );
15321532 lua_pushnil (L );
1533- while (!abort && lua_next (L , lua_upvalueindex (1 )) != 0 ) /* traverse cache table */
1533+ /* traverse cache table */
1534+ while (!abort && lua_next (L , lua_upvalueindex (1 )) != 0 )
15341535 {
15351536 lua_getmetatable (L , -1 );
15361537 if (lua_rawequal (L , -1 , 2 )) /* list? */
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+ 619 ,
744746/**/
745747 618 ,
746748/**/
You can’t perform that action at this time.
0 commit comments