From 316bca21be310ce3386a8e4f914a000080a92cd8 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 24 Aug 2009 15:07:58 +0200 Subject: [PATCH] stack: fix bad rename Signed-off-by: Julien Danjou --- client.h | 4 ++-- stack.c | 2 +- stack.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client.h b/client.h index d35124123..93105d0c0 100644 --- a/client.h +++ b/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(); } diff --git a/stack.c b/stack.c index 9279de399..cb58ec33e 100644 --- a/stack.c +++ b/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); diff --git a/stack.h b/stack.h index 4ef8319e1..39037659b 100644 --- a/stack.h +++ b/stack.h @@ -25,7 +25,7 @@ #include "structs.h" void stack_client_remove(client_t *); -void stack_luaA_object_push(client_t *); +void stack_client_push(client_t *); void stack_client_append(client_t *); #endif