stack: fix bad rename
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
0ca02db3c6
commit
316bca21be
4
client.h
4
client.h
|
@ -247,11 +247,11 @@ client_raise(client_t *c)
|
|||
static inline void
|
||||
client_lower(client_t *c)
|
||||
{
|
||||
stack_luaA_object_push(c);
|
||||
stack_client_push(c);
|
||||
|
||||
/* Traverse all transient layers. */
|
||||
for(client_t *tc = c->transient_for; tc; tc = tc->transient_for)
|
||||
stack_luaA_object_push(tc);
|
||||
stack_client_push(tc);
|
||||
|
||||
client_stack();
|
||||
}
|
||||
|
|
2
stack.c
2
stack.c
|
@ -39,7 +39,7 @@ stack_client_remove(client_t *c)
|
|||
* \param c The client to push.
|
||||
*/
|
||||
void
|
||||
stack_luaA_object_push(client_t *c)
|
||||
stack_client_push(client_t *c)
|
||||
{
|
||||
stack_client_remove(c);
|
||||
client_array_push(&globalconf.stack, c);
|
||||
|
|
Loading…
Reference in New Issue