From 2a5e1791d47ad603d135f8d472135cb6a2aadfb0 Mon Sep 17 00:00:00 2001 From: okan Date: Mon, 28 Jun 2010 12:29:04 +0000 Subject: [PATCH] fix window name and class to match cwmrc(5); from Holger Mikolon - thanks! ok oga@ --- group.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/group.c b/group.c index d88484b..0624098 100644 --- a/group.c +++ b/group.c @@ -188,12 +188,11 @@ group_make_autogroup(struct conf *conf, char *class, int no) if ((p = strchr(class, ',')) == NULL) { aw->name = NULL; - aw->class = xstrdup(class); } else { *(p++) = '\0'; - aw->name = xstrdup(class); - aw->class = xstrdup(p); + aw->name = xstrdup(p); } + aw->class = xstrdup(class); aw->num = no; TAILQ_INSERT_TAIL(&conf->autogroupq, aw, entry);