cvsimport

This commit is contained in:
Christian Neukirchen
2015-07-01 16:38:16 +02:00
11 changed files with 246 additions and 215 deletions

View File

@@ -22,7 +22,6 @@
#include <sys/types.h>
#include "queue.h"
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <limits.h>
@@ -264,9 +263,9 @@ group_cycle(struct screen_ctx *sc, int flags)
{
struct group_ctx *gc, *showgroup = NULL;
assert(sc->group_active != NULL);
if (((gc = sc->group_active)) == NULL)
errx(1, "group_cycle: no active group");
gc = sc->group_active;
for (;;) {
gc = (flags & CWM_RCYCLE) ? TAILQ_PREV(gc, group_ctx_q,
entry) : TAILQ_NEXT(gc, entry);