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 a29f2c9 commit 2a130bdCopy full SHA for 2a130bd
src/if_lua.c
@@ -774,7 +774,7 @@ luaV_list_insert (lua_State *L)
774
{
775
luaV_List *lis = luaV_checkudata(L, 1, LUAVIM_LIST);
776
list_T *l = (list_T *) luaV_checkcache(L, (void *) *lis);
777
- long pos = luaL_optlong(L, 3, 0);
+ long pos = (long) luaL_optinteger(L, 3, 0);
778
listitem_T *li = NULL;
779
typval_T v;
780
if (l->lv_lock)
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 638,
746
/**/
747
637,
748
0 commit comments