aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authoroga2009-12-11 17:51:42 +0000
committeroga2009-12-11 17:51:42 +0000
commitb5e3cdbe512264c453033c02a088bbd72c50bf32 (patch)
tree822f8d789a51066a07ff30d05feb5188352f91a3 /parse.y
parent640b7c9876ce301eafc3651136e16c191f26dd4b (diff)
downloadcwm-b5e3cdbe512264c453033c02a088bbd72c50bf32.tar.gz
Implement _NET_DESKTOP_NAMES, this one was a bit tricky since thespec
says that a pager can change the property at any time (most need a clientmessage). So deal with property updates. Needed to shuffle some of the other code around since we can't just use shortcut_to_name[] everywhere now. ok okan@
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y20
1 files changed, 2 insertions, 18 deletions
diff --git a/parse.y b/parse.y
index 9c501bc..337be45 100644
--- a/parse.y
+++ b/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.21 2009/06/20 00:22:39 okan Exp $ */
+/* $OpenBSD: parse.y,v 1.22 2009/12/11 17:51:42 oga Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -123,29 +123,13 @@ main : FONTNAME STRING {
free($3);
}
| AUTOGROUP NUMBER STRING {
- struct autogroupwin *aw;
- char *p;
-
if ($2 < 0 || $2 > 9) {
free($3);
yyerror("autogroup number out of range: %d", $2);
YYERROR;
}
- aw = xcalloc(1, sizeof(*aw));
-
- if ((p = strchr($3, ',')) == NULL) {
- aw->name = NULL;
- aw->class = xstrdup($3);
- } else {
- *(p++) = '\0';
- aw->name = xstrdup($3);
- aw->class = xstrdup(p);
- }
- aw->group = xstrdup(shortcut_to_name[$2]);
-
- TAILQ_INSERT_TAIL(&conf->autogroupq, aw, entry);
-
+ group_make_autogroup(conf, $3, $2);
free($3);
}
| IGNORE STRING {