mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 11:45:01 -07:00
*: Silence linter
This commit is contained in:
parent
f551df17f3
commit
a4dc8de073
@ -13397,7 +13397,7 @@ static void get_maparg(typval_T *argvars, typval_T *rettv, int exact)
|
|||||||
static void f_luaeval(typval_T *argvars, typval_T *rettv, FunPtr fptr)
|
static void f_luaeval(typval_T *argvars, typval_T *rettv, FunPtr fptr)
|
||||||
FUNC_ATTR_NONNULL_ALL
|
FUNC_ATTR_NONNULL_ALL
|
||||||
{
|
{
|
||||||
char *const str = (char *) get_tv_string(&argvars[0]);
|
const char *const str = (const char *)get_tv_string(&argvars[0]);
|
||||||
if (str == NULL) {
|
if (str == NULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -334,8 +334,8 @@ bool nlua_pop_typval(lua_State *lstate, typval_T *ret_tv)
|
|||||||
const MPConvStackVal mpval = kv_A(*mpstack, backref - 1); \
|
const MPConvStackVal mpval = kv_A(*mpstack, backref - 1); \
|
||||||
if (mpval.type == conv_type) { \
|
if (mpval.type == conv_type) { \
|
||||||
if (conv_type == kMPConvDict \
|
if (conv_type == kMPConvDict \
|
||||||
? (void *) mpval.data.d.dict == (void *) (val) \
|
? (void *)mpval.data.d.dict == (void *)(val) \
|
||||||
: (void *) mpval.data.l.list == (void *) (val)) { \
|
: (void *)mpval.data.l.list == (void *)(val)) { \
|
||||||
lua_pushvalue(lstate, \
|
lua_pushvalue(lstate, \
|
||||||
1 - ((int)((kv_size(*mpstack) - backref + 1) * 2))); \
|
1 - ((int)((kv_size(*mpstack) - backref + 1) * 2))); \
|
||||||
break; \
|
break; \
|
||||||
@ -450,7 +450,7 @@ static inline void nlua_push_locks_idx(lua_State *lstate)
|
|||||||
static inline void nlua_push_val_idx(lua_State *lstate)
|
static inline void nlua_push_val_idx(lua_State *lstate)
|
||||||
FUNC_ATTR_NONNULL_ALL
|
FUNC_ATTR_NONNULL_ALL
|
||||||
{
|
{
|
||||||
lua_pushnumber(lstate, (lua_Number) 0);
|
lua_pushnumber(lstate, (lua_Number)0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Push type
|
/// Push type
|
||||||
@ -480,7 +480,7 @@ static inline void nlua_create_typed_table(lua_State *lstate,
|
|||||||
const char *const type)
|
const char *const type)
|
||||||
FUNC_ATTR_NONNULL_ALL
|
FUNC_ATTR_NONNULL_ALL
|
||||||
{
|
{
|
||||||
lua_createtable(lstate, (int) narr, (int) (1 + nrec));
|
lua_createtable(lstate, (int)narr, (int)(1 + nrec));
|
||||||
nlua_push_type_idx(lstate);
|
nlua_push_type_idx(lstate);
|
||||||
nlua_push_type(lstate, type);
|
nlua_push_type(lstate, type);
|
||||||
lua_rawset(lstate, -3);
|
lua_rawset(lstate, -3);
|
||||||
@ -502,7 +502,7 @@ void nlua_push_String(lua_State *lstate, const String s)
|
|||||||
void nlua_push_Integer(lua_State *lstate, const Integer n)
|
void nlua_push_Integer(lua_State *lstate, const Integer n)
|
||||||
FUNC_ATTR_NONNULL_ALL
|
FUNC_ATTR_NONNULL_ALL
|
||||||
{
|
{
|
||||||
lua_pushnumber(lstate, (lua_Number) n);
|
lua_pushnumber(lstate, (lua_Number)n);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Convert given Float to lua table
|
/// Convert given Float to lua table
|
||||||
@ -513,7 +513,7 @@ void nlua_push_Float(lua_State *lstate, const Float f)
|
|||||||
{
|
{
|
||||||
nlua_create_typed_table(lstate, 0, 1, "float");
|
nlua_create_typed_table(lstate, 0, 1, "float");
|
||||||
nlua_push_val_idx(lstate);
|
nlua_push_val_idx(lstate);
|
||||||
lua_pushnumber(lstate, (lua_Number) f);
|
lua_pushnumber(lstate, (lua_Number)f);
|
||||||
lua_rawset(lstate, -3);
|
lua_rawset(lstate, -3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -558,7 +558,7 @@ void nlua_push_Array(lua_State *lstate, const Array array)
|
|||||||
nlua_add_locks_table(lstate);
|
nlua_add_locks_table(lstate);
|
||||||
for (size_t i = 0; i < array.size; i++) {
|
for (size_t i = 0; i < array.size; i++) {
|
||||||
nlua_push_Object(lstate, array.items[i]);
|
nlua_push_Object(lstate, array.items[i]);
|
||||||
lua_rawseti(lstate, -3, (int) i + 1);
|
lua_rawseti(lstate, -3, (int)i + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -619,7 +619,7 @@ String nlua_pop_String(lua_State *lstate, Error *err)
|
|||||||
{
|
{
|
||||||
String ret;
|
String ret;
|
||||||
|
|
||||||
ret.data = (char *) lua_tolstring(lstate, -1, &(ret.size));
|
ret.data = (char *)lua_tolstring(lstate, -1, &(ret.size));
|
||||||
|
|
||||||
if (ret.data == NULL) {
|
if (ret.data == NULL) {
|
||||||
lua_pop(lstate, 1);
|
lua_pop(lstate, 1);
|
||||||
@ -646,7 +646,7 @@ Integer nlua_pop_Integer(lua_State *lstate, Error *err)
|
|||||||
set_api_error("Expected lua integer", err);
|
set_api_error("Expected lua integer", err);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
ret = (Integer) lua_tonumber(lstate, -1);
|
ret = (Integer)lua_tonumber(lstate, -1);
|
||||||
lua_pop(lstate, 1);
|
lua_pop(lstate, 1);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
@ -744,7 +744,7 @@ Array nlua_pop_Array(lua_State *lstate, Error *err)
|
|||||||
for (size_t i = 1; i <= ret.size; i++) {
|
for (size_t i = 1; i <= ret.size; i++) {
|
||||||
Object val;
|
Object val;
|
||||||
|
|
||||||
lua_rawgeti(lstate, -1, (int) i);
|
lua_rawgeti(lstate, -1, (int)i);
|
||||||
|
|
||||||
val = nlua_pop_Object(lstate, err);
|
val = nlua_pop_Object(lstate, err);
|
||||||
if (err->set) {
|
if (err->set) {
|
||||||
|
@ -104,7 +104,7 @@ static int nlua_stricmp(lua_State *lstate) FUNC_ATTR_NONNULL_ALL
|
|||||||
const char *s2 = luaL_checklstring(lstate, 2, NULL);
|
const char *s2 = luaL_checklstring(lstate, 2, NULL);
|
||||||
const int ret = STRICMP(s1, s2);
|
const int ret = STRICMP(s1, s2);
|
||||||
lua_pop(lstate, 2);
|
lua_pop(lstate, 2);
|
||||||
lua_pushnumber(lstate, (lua_Number) ((ret > 0) - (ret < 0)));
|
lua_pushnumber(lstate, (lua_Number)((ret > 0) - (ret < 0)));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ static int nlua_state_init(lua_State *lstate) FUNC_ATTR_NONNULL_ALL
|
|||||||
{
|
{
|
||||||
lua_pushcfunction(lstate, &nlua_stricmp);
|
lua_pushcfunction(lstate, &nlua_stricmp);
|
||||||
lua_setglobal(lstate, "stricmp");
|
lua_setglobal(lstate, "stricmp");
|
||||||
if (luaL_dostring(lstate, (char *) &vim_module[0])) {
|
if (luaL_dostring(lstate, (char *)&vim_module[0])) {
|
||||||
nlua_error(lstate, _("E5106: Error while creating vim module: %s"));
|
nlua_error(lstate, _("E5106: Error while creating vim module: %s"));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user