luaa: change deprecate() with more useful info
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
5dcd8cedb6
commit
207df8e2b0
6
client.c
6
client.c
|
@ -943,7 +943,7 @@ luaA_client_visible_get(lua_State *L)
|
||||||
|
|
||||||
luaA_checkscreen(screen);
|
luaA_checkscreen(screen);
|
||||||
|
|
||||||
deprecate();
|
deprecate(L);
|
||||||
|
|
||||||
lua_newtable(L);
|
lua_newtable(L);
|
||||||
|
|
||||||
|
@ -1167,7 +1167,7 @@ luaA_client_geometry(lua_State *L)
|
||||||
static int
|
static int
|
||||||
luaA_client_coords(lua_State *L)
|
luaA_client_coords(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
return luaA_client_geometry(L);
|
return luaA_client_geometry(L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1208,7 +1208,7 @@ luaA_client_fullgeometry(lua_State *L)
|
||||||
static int
|
static int
|
||||||
luaA_client_fullcoords(lua_State *L)
|
luaA_client_fullcoords(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
return luaA_client_fullgeometry(L);
|
return luaA_client_fullgeometry(L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
hooks.c
2
hooks.c
|
@ -98,7 +98,7 @@ luaA_hooks_mouse_enter(lua_State *L)
|
||||||
static int
|
static int
|
||||||
luaA_hooks_mouse_over(lua_State *L)
|
luaA_hooks_mouse_over(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
return luaA_hooks_mouse_enter(L);
|
return luaA_hooks_mouse_enter(L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
4
luaa.c
4
luaa.c
|
@ -175,7 +175,7 @@ luaA_font(lua_State *L)
|
||||||
static int
|
static int
|
||||||
luaA_font_set(lua_State *L)
|
luaA_font_set(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
return luaA_font(L);
|
return luaA_font(L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -240,7 +240,7 @@ luaA_colors(lua_State *L)
|
||||||
static int
|
static int
|
||||||
luaA_colors_set(lua_State *L)
|
luaA_colors_set(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
return luaA_colors(L);
|
return luaA_colors(L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
5
luaa.h
5
luaa.h
|
@ -35,9 +35,8 @@
|
||||||
/** Type for Lua function */
|
/** Type for Lua function */
|
||||||
typedef int luaA_ref;
|
typedef int luaA_ref;
|
||||||
|
|
||||||
#define deprecate() _warn(__LINE__, \
|
#define deprecate(L) luaA_warn(L, "%s: This function is deprecated and will be removed.", \
|
||||||
__FUNCTION__, \
|
__FUNCTION__)
|
||||||
"This function is deprecated and will be removed.")
|
|
||||||
|
|
||||||
#define DO_LUA_NEW(decl, type, prefix, lua_type, type_ref) \
|
#define DO_LUA_NEW(decl, type, prefix, lua_type, type_ref) \
|
||||||
decl int \
|
decl int \
|
||||||
|
|
2
mouse.c
2
mouse.c
|
@ -1374,7 +1374,7 @@ luaA_mouse_coords(lua_State *L)
|
||||||
static int
|
static int
|
||||||
luaA_mouse_new(lua_State *L)
|
luaA_mouse_new(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
return luaA_button_new(L);
|
return luaA_button_new(L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
screen.c
2
screen.c
|
@ -500,7 +500,7 @@ luaA_screen_index(lua_State *L)
|
||||||
switch(a_tokenize(buf, len))
|
switch(a_tokenize(buf, len))
|
||||||
{
|
{
|
||||||
case A_TK_COORDS:
|
case A_TK_COORDS:
|
||||||
deprecate();
|
deprecate(L);
|
||||||
case A_TK_GEOMETRY:
|
case A_TK_GEOMETRY:
|
||||||
luaA_pusharea(L, s->geometry);
|
luaA_pusharea(L, s->geometry);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
static int
|
static int
|
||||||
luaA_statusbar_new(lua_State *L)
|
luaA_statusbar_new(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
|
|
||||||
return luaA_wibox_new(L);
|
return luaA_wibox_new(L);
|
||||||
}
|
}
|
||||||
|
|
|
@ -157,7 +157,7 @@ titlebar_geometry_compute(client_t *c, area_t geometry, area_t *res)
|
||||||
static int
|
static int
|
||||||
luaA_titlebar_new(lua_State *L)
|
luaA_titlebar_new(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
|
|
||||||
return luaA_wibox_new(L);
|
return luaA_wibox_new(L);
|
||||||
}
|
}
|
||||||
|
|
6
widget.c
6
widget.c
|
@ -358,7 +358,7 @@ widget_invalidate_bywidget(widget_t *widget)
|
||||||
static int
|
static int
|
||||||
luaA_widget_mouse_add(lua_State *L)
|
luaA_widget_mouse_add(lua_State *L)
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -392,8 +392,8 @@ luaA_widget_new(lua_State *L)
|
||||||
if(!a_strcmp(type, "tasklist")
|
if(!a_strcmp(type, "tasklist")
|
||||||
|| !a_strcmp(type, "taglist"))
|
|| !a_strcmp(type, "taglist"))
|
||||||
{
|
{
|
||||||
deprecate();
|
deprecate(L);
|
||||||
luaA_warn(L, "requesting old widgets, return a table to allow smooth execution\n");
|
luaA_warn(L, "requesting old widgets, return a table to allow smooth execution.\n");
|
||||||
lua_newtable(L);
|
lua_newtable(L);
|
||||||
lua_pushcfunction(L, luaA_widget_mouse_add);
|
lua_pushcfunction(L, luaA_widget_mouse_add);
|
||||||
lua_setfield(L, -2, "mouse_add");
|
lua_setfield(L, -2, "mouse_add");
|
||||||
|
|
Loading…
Reference in New Issue