aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorokan2014-09-08 20:32:40 +0000
committerokan2014-09-08 20:32:40 +0000
commit33f6a3517379273ce339da4d47ed82759aae725c (patch)
tree07c16e2c3125f844b3992bcd2d4387ed5ee972c5 /client.c
parent943a3f1272a3549265acbce2060801cb669396bc (diff)
downloadcwm-33f6a3517379273ce339da4d47ed82759aae725c.tar.gz
since mruq has been folded in, rename mru-named functions
Diffstat (limited to 'client.c')
-rw-r--r--client.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/client.c b/client.c
index b93d71f..20a3745 100644
--- a/client.c
+++ b/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: client.c,v 1.177 2014/09/08 20:11:22 okan Exp $
+ * $OpenBSD: client.c,v 1.178 2014/09/08 20:32:40 okan Exp $
*/
#include <sys/param.h>
@@ -31,8 +31,8 @@
#include "calmwm.h"
-static struct client_ctx *client_mrunext(struct client_ctx *);
-static struct client_ctx *client_mruprev(struct client_ctx *);
+static struct client_ctx *client_next(struct client_ctx *);
+static struct client_ctx *client_prev(struct client_ctx *);
static void client_mtf(struct client_ctx *);
static void client_none(struct screen_ctx *);
static void client_placecalc(struct client_ctx *);
@@ -654,8 +654,8 @@ client_cycle(struct screen_ctx *sc, int flags)
while (again) {
again = 0;
- newcc = (flags & CWM_RCYCLE ? client_mruprev(newcc) :
- client_mrunext(newcc));
+ newcc = (flags & CWM_RCYCLE ? client_prev(newcc) :
+ client_next(newcc));
/* Only cycle visible and non-ignored windows. */
if ((newcc->flags & (CLIENT_HIDDEN|CLIENT_IGNORE))
@@ -692,7 +692,7 @@ client_cycle_leave(struct screen_ctx *sc)
}
static struct client_ctx *
-client_mrunext(struct client_ctx *cc)
+client_next(struct client_ctx *cc)
{
struct screen_ctx *sc = cc->sc;
struct client_ctx *ccc;
@@ -702,7 +702,7 @@ client_mrunext(struct client_ctx *cc)
}
static struct client_ctx *
-client_mruprev(struct client_ctx *cc)
+client_prev(struct client_ctx *cc)
{
struct screen_ctx *sc = cc->sc;
struct client_ctx *ccc;