Don't print warnings for non-existing xrdb values

If needed, the Lua code can print a warning instead.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2017-05-24 10:06:24 +02:00
parent b98ca2ec98
commit f4e66bd24b
1 changed files with 0 additions and 4 deletions

4
xrdb.c
View File

@ -38,10 +38,6 @@ int luaA_xrdb_get_value(lua_State *L) {
char *result = NULL;
if (xcb_xrm_resource_get_string(globalconf.xrmdb, resource_name, resource_class, &result) < 0 ) {
if (strlen(resource_class))
luaA_warn(L, "Failed to get xrdb value '%s' (class '%s').", resource_name, resource_class);
else
luaA_warn(L, "Failed to get xrdb value '%s'.", resource_name);
lua_pushnil(L);
} else {
lua_pushstring(L, result);