Feature #670 ยป 0084-scriptcore-Clear-trailing-spaces.patch
| common/scriptcore/api_game_methods.c | ||
|---|---|---|
|
return FALSE;
|
||
|
} else {
|
||
|
struct extra_type *pextra;
|
||
|
|
||
|
pextra = extra_type_by_rule_name(name);
|
||
|
return (NULL != pextra && is_extra_caused_by(pextra, EC_ROAD)
|
||
| common/scriptcore/luascript.c | ||
|---|---|---|
|
#else /* LUA_VERSION_NUM */
|
||
|
#error "Unsupported lua version"
|
||
|
#endif /* LUA_VERSION_NUM */
|
||
|
|
||
|
static int luascript_report(struct fc_lua *fcl, int status, const char *code);
|
||
|
static void luascript_traceback_func_save(lua_State *L);
|
||
|
static void luascript_traceback_func_push(lua_State *L);
|
||
| common/scriptcore/tolua_common_a.pkg | ||
|---|---|---|
|
log.error("Illegal assignment to constant '%s'.", tostring(b))
|
||
|
end
|
||
|
end,
|
||
|
|
||
|
__index = function(a,b)
|
||
|
return data[b]
|
||
|
end
|
||