From 8e67d1389ceb0450712039832e5ff868335c6846 Mon Sep 17 00:00:00 2001 From: okan Date: Mon, 17 Dec 2012 14:58:46 +0000 Subject: [PATCH] make client_mtf static --- calmwm.h | 1 - client.c | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/calmwm.h b/calmwm.h index 35bf6c2..bfef2bd 100644 --- a/calmwm.h +++ b/calmwm.h @@ -331,7 +331,6 @@ void client_lower(struct client_ctx *); void client_map(struct client_ctx *); void client_maximize(struct client_ctx *); void client_move(struct client_ctx *); -void client_mtf(struct client_ctx *); struct client_ctx *client_new(Window, struct screen_ctx *, int); void client_ptrsave(struct client_ctx *); void client_ptrwarp(struct client_ctx *); diff --git a/client.c b/client.c index 8824f1c..3dd6c70 100644 --- a/client.c +++ b/client.c @@ -33,6 +33,7 @@ static struct client_ctx *client_mrunext(struct client_ctx *); static struct client_ctx *client_mruprev(struct client_ctx *); +static void client_mtf(struct client_ctx *); static void client_none(struct screen_ctx *); static void client_placecalc(struct client_ctx *); static void client_update(struct client_ctx *); @@ -731,7 +732,7 @@ client_placecalc(struct client_ctx *cc) } } -void +static void client_mtf(struct client_ctx *cc) { struct screen_ctx *sc; @@ -742,8 +743,6 @@ client_mtf(struct client_ctx *cc) return; sc = cc->sc; - - /* Move to front. */ TAILQ_REMOVE(&sc->mruq, cc, mru_entry); TAILQ_INSERT_HEAD(&sc->mruq, cc, mru_entry); }